System.ComponentModel.ListSortDescriptionCollection.IndexOf C# (CSharp) Method

IndexOf() public method

public IndexOf ( object value ) : int
value object
return int
        public int IndexOf(object value) {
            return ((IList)this.sorts).IndexOf(value);
        }