c# get specific index from string code example

Example 1: get string character by index c#

//Returns a char
myString.[0];

//Returns a string
myString.[0].ToString();

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",
      };

      // finding index
      int index = myList.FindIndex(a => a.Contains("Tennis"));

      // displaying index
      Console.WriteLine("List Item Tennis Found at index: " + index);
   }
}