Beispiel #1
0
 private void CheckStack(JsonStack mask)
 {
     if ((Stack & mask) == 0)
     {
         throw new Exception($"JSON error {mask}. Current: {sb}");
     }
 }
Beispiel #2
0
 private void Push(JsonStack s)
 {
     _stack.Add(s);
     quotes.Add(false);
 }