System.Collections.SortedList.ValueList.IndexOf C# (CSharp) Method

IndexOf() public method

public IndexOf ( Object value ) : int
value Object
return int
            public virtual int IndexOf(Object value)
            {
                return Array.IndexOf(_sortedList._values, value, 0, _sortedList.Count);
            }