Esempio n. 1
0
 public static bool IsObjectClosing(this JSONToken arg)
 {
     return(arg.content == "}" && arg.type == JSONTokenType.SYMBOL);
 }
Esempio n. 2
0
 public static bool IsCollectionClosing(this JSONToken arg)
 {
     return(arg.content == "]" && arg.type == JSONTokenType.SYMBOL);
 }
Esempio n. 3
0
 public static bool IsComma(this JSONToken arg)
 {
     return(arg.content == "," && arg.type == JSONTokenType.SYMBOL);
 }