Click or drag to resize
JsonDynamicInsertRange Method
Inserts the values of a collection 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 InsertRange(
	int index,
	IEnumerable<JsonValue> items
)

Parameters

index
Type: SystemInt32
The zero-based index at which items should be inserted.
items
Type: System.Collections.GenericIEnumerableJsonValue
The collection of items which will be inserted to the specified position in the array. The collection can contains items whose value is null.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than 0 or is equal or more than Count.
ArgumentNullExceptionitems is null.
InvalidCastExceptionIf this object does not wrap JsonArray.
See Also