Aracılığıyla paylaş


CodeDirectiveCollection.IndexOf(CodeDirective) Yöntem

Tanım

Belirtilen CodeDirective nesne koleksiyonda varsa, koleksiyonundaki dizini alır.

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

Parametreler

value
CodeDirective

CodeDirective Koleksiyonda bulunacak nesne.

Döndürülenler

Bulunursa, belirtilen nesnenin koleksiyonundaki dizin konumu; aksi takdirde, -1.

Örnekler

Aşağıdaki kod örneği, belirtilen CodeDirective nesnenin IndexOf koleksiyonunda dizini almak için yönteminin kullanımını gösterir. Bu örnek, sınıfı için CodeDirectiveCollection sağlanan daha büyük bir örneğin bir parçasıdır.

// 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

Şunlara uygulanır