CodeExpressionCollection.IndexOf(CodeExpression) 方法

定义

获取集合中指定 CodeExpression 对象的索引(如果集合中存在)。

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

参数

value
CodeExpression

CodeExpression 定位在集合中的对象。

返回

在集合中找到的指定对象的索引;否则为 -1。

示例

以下示例搜索特定 CodeExpression 对象的存在,并使用 IndexOf 该方法获取找到它的索引值。

// Tests for the presence of a CodeExpression in the
// collection, and retrieves its index if it is found.
CodeExpression testComment = new CodePrimitiveExpression(true);
int itemIndex = -1;
if( collection.Contains( testComment ) )
    itemIndex = collection.IndexOf( testComment );
' Tests for the presence of a CodeExpression in the 
' collection, and retrieves its index if it is found.
Dim testComment = New CodePrimitiveExpression(True)
Dim itemIndex As Integer = -1
If collection.Contains(testComment) Then
    itemIndex = collection.IndexOf(testComment)
End If

适用于

另请参阅