c# list get item at index code example
Example 1: c# list index
using System.Linq;
var myList = new List<string>{ "Yes", "No", "Maybe"};
var firstItem = myList.ElementAt(0);
Example 2: c# get index of item in list
Array.IndexOf(arrName, searchingFor)
Example 3: get both item and index in c#
public static IEnumerable<(T item, int index)> WithIndex<T>(this IEnumerable<T> source)
{
return source.Select((item, index) => (item, index));
}
foreach (var (item, index) in collection.WithIndex())
{
DoSomething(item, index);
}
Example 4: c# list any retun indec
public class Item {
public int Id { get; set; }
public Item() {}
public Item(int id) { Id = id; }
}
List<Item> idList = { new Item(1), new Item(2), new Item(3) };
Item[] idLArr = [ new Item(1), new Item(2), new Item(3) ];
Item newItem = new Item(1);
int index = idList.FindIndex(item => item.Id == newItem.Id);
int arrIndex = Array.IndexOf(idLArr, newItem.Id);
if (index != -1)
{
}
Example 5: index of item in list C#
List<string> strings = new List<string>(){"bob","ate","an", "apple"};
strings.IndexOf("bob");
strings.IndexOf("an");
strings.IndexOf("apple");
strings.IndexOf("banana");