コード例 #1
0
 public static ListTreeNode <JsonValue> ParseAsJson(this ArraySegment <byte> bytes)
 {
     return(JsonParser.Parse(new Utf8String(bytes)));
 }
コード例 #2
0
 public static ListTreeNode <JsonValue> ParseAsJson(this string json)
 {
     return(JsonParser.Parse(json));
 }
コード例 #3
0
 public static ListTreeNode <JsonValue> ParseAsJson(this byte[] bytes)
 {
     return(JsonParser.Parse(new Utf8String(bytes)));
 }