String to Array
How do you convert a string to an array in C#?
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.
FroglegPosted Mar 20, 2011, 4:04 PM
string str = ("Convert to array");
char[] strC = str.ToCharArray();