This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 409
f91c2919 3751 2831 f2a2 a0ef7ecb5fd3
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Inserts an item to the list at the specified index.
Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public void Insert(
int index,
string item
)
VB
Public Sub Insert (
index As Integer,
item As String
)
C++
public:
virtual void Insert(
int index,
String^ item
) sealed
F#
abstract Insert :
index : int *
item : string -> unit
override Insert :
index : int *
item : string -> unit
- Int32
- The zero-based index at which the item should be inserted.
- String
- The object to insert into the list.
IList(T).Insert(Int32, T)