Insert Method
Insert(int, string)
Inserts a string value into the collection at the specified index.
Declaration
public void Insert(int index, string item)
Public Sub Insert(index As Integer, item As String)
Parameters
Type |
Name |
Description |
int |
index |
Index at which item should be inserted.
|
string |
item |
String value.
|
Implements