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