MatchCollection.IList.IndexOf(Object) 方法

定义

确定集合中特定项的索引。

 virtual int System.Collections.IList.IndexOf(System::Object ^ value) = System::Collections::IList::IndexOf;
int IList.IndexOf (object value);
abstract member System.Collections.IList.IndexOf : obj -> int
override this.System.Collections.IList.IndexOf : obj -> int
Function IndexOf (value As Object) As Integer Implements IList.IndexOf

参数

value
Object

要在集合中定位的对象。

返回

Int32

如果在列表中找到,则为 value 的索引;否则为 -1。

实现

注解

从 .NET Framework 2.0 开始,此方法使用集合的对象EqualsCompareTo方法item来确定项是否存在。 在早期版本的.NET Framework中,通过使用Equals集合中对象的参数和CompareTo方法item做出此决定。

适用于