Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-preview5_System.Text.Json.Nodes.md « Microsoft.NETCore.App « preview5 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7951d35eee673e736c951a8613a172e28ca37966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# System.Text.Json.Nodes

``` diff
 namespace System.Text.Json.Nodes {
     public sealed class JsonArray : JsonNode, ICollection<JsonNode?>, IEnumerable, IEnumerable<JsonNode?>, IList<JsonNode?> {
         public void Add<T>(T value);
     }
     public abstract class JsonValue : JsonNode {
         public static JsonValue Create<T>(T value, JsonNodeOptions? options = default(JsonNodeOptions?));
     }
 }
```