It is essential to implement an ORM that will map Json5Object to custom types the same as it is done by Json.NET. For example: ```c# public class Program { public string Name { get; set; } public Program Nested; public static void Main() { var obj = Json5.Parse<Program>("{ name: 'hello world', nested: { name: 'hello parent' } }"); Console.WriteLine(obj.Name); Console.WriteLine(obj.Nested.Name); } } ```
It is essential to implement an ORM that will map Json5Object to custom types the same as it is done by Json.NET. For example: