c# get char from string

C#
char first = mystring[0];
char second = mystring[1];
char third = mystring[2];
Source

Also in C#: