CodeDirectiveCollection.IndexOf(CodeDirective) Метод

Определение

Получает индекс в коллекции указанного объекта CodeDirective, если он существует в коллекции.

public:
 int IndexOf(System::CodeDom::CodeDirective ^ value);
public int IndexOf (System.CodeDom.CodeDirective value);
member this.IndexOf : System.CodeDom.CodeDirective -> int
Public Function IndexOf (value As CodeDirective) As Integer

Параметры

value
CodeDirective

Объект CodeDirective, который требуется найти в коллекции.

Возвращаемое значение

Позиция индекса в коллекции указанного объекта, если найден; в противном случае — значение -1.

Примеры

В следующем примере кода показано использование IndexOf метода для получения индекса в коллекции указанного CodeDirective объекта . Этот пример является частью более крупного примера, предоставленного CodeDirectiveCollection для класса .

// Tests for the presence of a CodeDirective in the
// collection, and retrieves its index if it is found.
CodeDirective testDirective = new CodeRegionDirective(CodeRegionMode.Start, "Region1");
int itemIndex = -1;
if (collection.Contains(testDirective))
    itemIndex = collection.IndexOf(testDirective);
' Tests for the presence of a CodeDirective in the 
' collection, and retrieves its index if it is found.
Dim testDirective = New CodeRegionDirective(CodeRegionMode.Start, "Region1")
Dim itemIndex As Integer = -1
If collection.Contains(testDirective) Then
    itemIndex = collection.IndexOf(testDirective)
End If

Применяется к