You can also create a JsonItem by newing an object of a JsonItem's subclass as following. // public JsonString(string value); // public JsonString(char value); JsonItem item1 = new JsonString("value1" ...
Currently JsonObject supports C# "dynamic" which primarily means an instance of JsonObject can get\set a property value without having to use a string for the property name. Although dynamic support ...