get char c# code example
Example 1: c# readline char
Your_Char=Convert.ToChar(Console.readline());
Example 2: c# read char
input[i] = Console.ReadKey().KeyChar;
Example 3: c# get char from string
char first = mystring[0];
char second = mystring[1];
char third = mystring[2];