Namespace: Dapfor.Wpf.DataAssembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
Syntax
C# |
---|
public void Insert(
int index,
T item
) |
Visual Basic |
---|
Public Sub Insert (
index As Integer,
item As T
) |
Visual C++ |
---|
public:
virtual void Insert(
int index,
T item
) sealed |
F# |
---|
abstract Insert :
index : int *
item : 'T -> unit
override Insert :
index : int *
item : 'T -> unit |
Parameters
- index
- Type: System..::..Int32
The zero-based index at which item should be inserted.
- item
- Type: T
The object to insert into the IList<(Of <(<'T>)>)>.
Implements
IList<(Of <(<'T>)>)>..::..Insert(Int32, T)Exceptions
See Also