how to find deferend indexes from a character in a string c# code example
Example 1: get string character by index c#
//Returns a char
myString.[0];
//Returns a string
myString.[0].ToString();
Example 2: letter at index of string c#
string s = "hello";
char c = s[1];
// now c == 'e'