Really simple JSON parser which attempts to parse JSON files with minimal GC allocation
Attempts are made to NOT throw an exception if the JSON is corrupted or invalid: returns null instead.
Only public fields and property setters on classes/structs will be written to.
Parsing of abstract classes or interfaces is NOT supported and will throw an exception.
Inheritance Hierarchy SystemObject
TinyJsonJSONParser
Namespace:
TinyJson
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public static class JSONParser
<ExtensionAttribute>
Public NotInheritable Class JSONParser
[ExtensionAttribute]
public ref class JSONParser abstract sealed
[<AbstractClassAttribute>]
[<SealedAttribute>]
[<ExtensionAttribute>]
type JSONParser = class end
The JSONParser type exposes the following members.
Methods
| Name | Description |
---|
| FromJsonT | Transforms a JSON string into the object of type T. |
TopSee Also