3 references to LastIndexOf
mscorlib (3)
system\array.cs (2)
1516return LastIndexOf(array, value, array.Length - 1, array.Length); 1526return LastIndexOf(array, value, startIndex, (array.Length == 0)? 0 : (startIndex + 1));
system\collections\generic\list.cs (1)
817return Array.LastIndexOf(_items, item, index, count);