public static void Main()
string str = "GeeksForGeeks";
int index1 = str.IndexOf('e');
Console.WriteLine("The first Index Value of character 'e' is " + index1);
int index2 = str.IndexOf('C');
Console.WriteLine("The Index Value of character 'C' is " + index2);