System.Collections.ArrayList.ReadOnlyArrayList.LastIndexOf C# (CSharp) Method

LastIndexOf() private method

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

Same methods

ArrayList.ReadOnlyArrayList::LastIndexOf ( Object value ) : int
ArrayList.ReadOnlyArrayList::LastIndexOf ( Object value, int startIndex, int count ) : int