get string character by index c#

C#
//Returns a char
myString.[0];

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

Also in C#: