CodeDirectiveCollection.IndexOf(CodeDirective) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得指定 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