One-file JSON Parser can parse JSON in a single file, ItsJsonParser.cs.You can easily use, copy, modify, reproduce, transmit, and distribute the software.FeatureParse JSON string to classParse class to JSON stringDetailsNested classes and structs can be parsedNested Arrays and Lists can be parsedEnum variables can be parsed as nameNullable variables can be parsed (when not null)SerializeField and NonSerialized attributes can be used to mark as parse targetExampleTo JSON text from ClassFooClass foo = new FooClass();string jsonText = ItsJsonParser.ToJson(foo);From JSON text to Classstring jsonText = "{\"foo\":1, \"bar\":\"baz\"}";FooClass foo = ItsJsonParser.FromJson(jsonText);