convert char to string
How can explicitly convert type 'char' to 'string' or'char' to 'int'
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Suthish NairPosted Jun 17, 2011, 6:58 AM
VulpesPosted Jun 16, 2011, 4:23 AM
Gurjeet SinghPosted Jun 16, 2011, 1:01 AM
Posted Jun 16, 2011, 12:24 AM
string s = Convert.ToString('C');
From Char to Int,
int i = Convert.ToInt32('C'); //the output will be 67 here.