List<T>.LastIndexOf Method (T)
Searches for the specified object and returns the zero-based index of the last occurrence within the entire List<T>.
Namespace: System.Collections.Generic
Assembly: mscorlib (in mscorlib.dll)
The List<T> is searched backward starting at the last element and ending at the first element.
This method determines equality using the default equality comparer EqualityComparer<T>.Default for T, the type of values in the list.
This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.
The following code example demonstrates all three overloads of the LastIndexOf method. A List<T> of strings is created, with one entry that appears twice, at index location 0 and index location 5. The LastIndexOf(T) method overload searches the entire list from the end, and finds the second occurrence of the string. The LastIndexOf(T, Int32) method overload is used to search the list backward beginning with index location 3 and continuing to the beginning of the list, so it finds the first occurrence of the string in the list. Finally, the LastIndexOf(T, Int32, Int32) method overload is used to search a range of four entries, beginning at index location 4 and extending backward (that is, it searches the items at locations 4, 3, 2, and 1); this search returns –1 because there are no instances of the search string in that range.
using System; using System.Collections.Generic; public class Example { public static void Main() { List<string> dinosaurs = new List<string>(); dinosaurs.Add("Tyrannosaurus"); dinosaurs.Add("Amargasaurus"); dinosaurs.Add("Mamenchisaurus"); dinosaurs.Add("Brachiosaurus"); dinosaurs.Add("Deinonychus"); dinosaurs.Add("Tyrannosaurus"); dinosaurs.Add("Compsognathus"); Console.WriteLine(); foreach(string dinosaur in dinosaurs) { Console.WriteLine(dinosaur); } Console.WriteLine("\nLastIndexOf(\"Tyrannosaurus\"): {0}", dinosaurs.LastIndexOf("Tyrannosaurus")); Console.WriteLine("\nLastIndexOf(\"Tyrannosaurus\", 3): {0}", dinosaurs.LastIndexOf("Tyrannosaurus", 3)); Console.WriteLine("\nLastIndexOf(\"Tyrannosaurus\", 4, 4): {0}", dinosaurs.LastIndexOf("Tyrannosaurus", 4, 4)); } } /* This code example produces the following output: Tyrannosaurus Amargasaurus Mamenchisaurus Brachiosaurus Deinonychus Tyrannosaurus Compsognathus LastIndexOf("Tyrannosaurus"): 5 LastIndexOf("Tyrannosaurus", 3): 0 LastIndexOf("Tyrannosaurus", 4, 4): -1 */
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.