JsonObjectInsert Method
            Inserts an 
item to the 
JsonObject at the specified 
index.
            
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public void Insert(
	int index,
	JsonProperty item
)
Public Sub Insert ( 
	index As Integer,
	item As JsonProperty
)
public:
virtual void Insert(
	int index, 
	JsonProperty item
) sealed
abstract Insert : 
        index : int * 
        item : JsonProperty -> unit 
override Insert : 
        index : int * 
        item : JsonProperty -> unit 
- index  Int32
- The zero-based index at which item should be inserted.
- item  JsonProperty
- The JsonProperty to insert into the JsonObject.
IListTInsert(Int32, T)