xxxxxxxxxx
//If your string is a Word
string str = "Barkerbg001";
char[] characters = str.ToCharArray();
//If you string is only one letter:
string str = "A";
char character = char.Parse(str);
//But if you want a certain character from a word
string str = "A";
char character = str.ToCharArray()[0];