0
Help code....
How can i read variable data type is char in c#??? Char a; a=....???; //how i can do read for char
7 Answers
0
Console.ReadLine();
+ 1
Do you mean with input or output? Or just to assign variable char a to a character?
+ 1
Just put the wanted character between 2 single quotes ' '.
Such as: 'i', 'N', '7', '+'
+ 1
a = 's'; //For example
0
yup assign variable
0
ok and what about how read to enter input variable without assign...(enter input from keyboard)
0
thank you