Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
scottcgi committed Jan 1, 2020
1 parent 05e3196 commit 28a45c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ MojoJson is licensed under the [MIT License](https://github.com/scottcgi/MojoJso
var jsonValue = MojoJson.Json.Parse(string jsonString);
```

* Whether to convert escaped strings when `ParseString`.
* Whether to convert escaped strings when **ParseString**.

```csharp
/// default false
MojoJson.Json.SetEscapeString(bool isEscapeString)
```

* JsonValue is `primitive` type.
* JsonValue is **primitive** type.

```csharp
public string AsString();
Expand All @@ -44,7 +44,7 @@ MojoJson is licensed under the [MIT License](https://github.com/scottcgi/MojoJso
public bool IsNull();
```

* JsonValue is `JsonObject`
* JsonValue is **JsonObject**

```csharp
/// Get the JsonObject, that is a set of k-v pairs, and each value is JsonValue.
Expand Down Expand Up @@ -75,7 +75,7 @@ MojoJson is licensed under the [MIT License](https://github.com/scottcgi/MojoJso
public bool AsObjectGetIsNull(string key);
```

* JsonValue is `JsonArray`.
* JsonValue is **JsonArray**.

```csharp
/// Get the JsonArray, that is JsonValue list.
Expand Down

0 comments on commit 28a45c2

Please sign in to comment.