WriterContext.cs 213 B

1234567891011121314151617
  1. using System;
  2. namespace LitJson
  3. {
  4. internal class WriterContext
  5. {
  6. public int Count;
  7. public bool InArray;
  8. public bool InObject;
  9. public bool ExpectingValue;
  10. public int Padding;
  11. }
  12. }