letter at index of string c#

C#
string s = "hello";
char c = s[1];
// now c == 'e'
Source

Also in C#: