how to find the index of a string in C# code example
Example 1: c# find index of character in string
string str = "Now is the time.";
int index = str.IndexOf("h");
Example 2: find index of string in a list C#
using System;
using System.Collections.Generic;
public class Program {
public static void Main() {
List < string > myList = new List < string > () {
"Football",
"Soccer",
"Tennis",
};
int index = myList.FindIndex(a => a.Contains("Tennis"));
Console.WriteLine("List Item Tennis Found at index: " + index);
}
}