JsonDynamicInsertRange Method |
Inserts the values of a collection into the array at the specified index.
Namespace: Dextronet.JsonieAssembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax public void InsertRange(
int index,
IEnumerable<JsonValue> items
)
Public Sub InsertRange (
index As Integer,
items As IEnumerable(Of JsonValue)
)
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 See Also