This repository was archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 439
80cbfd37 9d6a b9ef 2aa8 15fb52ed4165
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Determines the index of a specific item in the list.
Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public int IndexOf(
string item
)VB
Public Function IndexOf (
item As String
) As IntegerC++
public:
virtual int IndexOf(
String^ item
) sealedF#
abstract IndexOf :
item : string -> int
override IndexOf :
item : string -> int - String
- The object to locate in the list.
Int32
The index of item if found in the list; otherwise, -1.
IList(T).IndexOf(T)