how to convert string to StringArray in window form...?
hello...now i need some help for converting the string to StringArray in window form...? i had try many times but still canot get it....who can help...?
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.
Vijay YadavPosted Jan 18, 2011, 5:53 AM
You are not clear with your question anyway Frogleg has given good example.
Thanks
Vijay
FroglegPosted Jan 17, 2011, 2:44 PM
string str =("hello");
Char[] strC = str.ToCharArray();
label1.Text = (strC[0] + "," + strC[1] + "," + strC[2] + "," + strC[3] + "," + strC[4]);