TableRowCollection.IList.IndexOf(Object) Метод
Определение
Осуществляет поиск указанного объекта и возвращает отсчитываемый от нуля индекс первого вхождения в коллекции.Searches for the specified object and returns the zero-based index of the first occurrence within the collection.
virtual int System.Collections.IList.IndexOf(System::Object ^ o) = System::Collections::IList::IndexOf;
int IList.IndexOf (object o);
abstract member System.Collections.IList.IndexOf : obj -> int
override this.System.Collections.IList.IndexOf : obj -> int
Function IndexOf (o As Object) As Integer Implements IList.IndexOf
Параметры
- o
- Object
Объект, местоположение которого требуется найти в коллекции.The object to locate within the collection.
Возвращаемое значение
Отсчитываемый от нуля индекс первого вхождения объекта в коллекции; в противном случае — значение -1, если объект отсутствует в коллекции.The zero-based index of the first occurrence of the object within the collection; otherwise, -1 if the object is not in the collection.
Реализации
Комментарии
Как правило, GetRowIndex для получения индекса элемента в объекте следует использовать метод TableRowCollection .Typically, you should use the GetRowIndex method to get the index of an element in a TableRowCollection object.
IList.IndexOfМетод является явной реализацией члена интерфейса.The IList.IndexOf method is an explicit interface member implementation. Он может использоваться, только если экземпляр TableRowCollection приведен к типу интерфейса IList.It can be used only when the TableRowCollection instance is cast to an IList interface.