System.Collections.ArrayList.FixedSizeArrayList.IndexOf C# (CSharp) Method

IndexOf() private method

private IndexOf ( Object value, int startIndex, int count ) : int
value Object
startIndex int
count int
return int
            public override int IndexOf(Object value, int startIndex, int count)
            {
                return _list.IndexOf(value, startIndex, count);
            }

Same methods

ArrayList.FixedSizeArrayList::IndexOf ( Object value ) : int
ArrayList.FixedSizeArrayList::IndexOf ( Object value, int startIndex ) : int