may i know how to convert Char to String in C#?
tq.

Recommended Answers

All 2 Replies

char myChar = 'c';
String myString = myChar.ToString();
char a = Convert.ToChar(textbox1.Text);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.