Determines the index of a specific item in the IList.
- value
- The object to locate in the IList.
The index of value if found in the list; otherwise, -1.
Starting with the .NET Framework 2.0, this method uses the collection’s objects’ object.Equals(object) and IComparable.CompareTo(object) methods on item to determine whether item exists. In the earlier versions of the .NET Framework, this determination was made by using the object.Equals(object) and IComparable.CompareTo(object) methods of the item parameter on the objects in the collection.