Click or drag to resize
JsonDynamicInsert Method
Inserts an value into the array at the specified index.

Namespace: Dextronet.Jsonie
Assembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax
public void Insert(
	int index,
	JsonValue item
)

Parameters

index
Type: SystemInt32
The zero-based index at which item should be inserted.
item
Type: Dextronet.JsonieJsonValue
The object to insert. The value can be null.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than 0 or is equal or more than Count.
InvalidCastExceptionIf this object does not wrap JsonArray.
See Also