How to transfer a string to char array

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

I have a string variable say:

string sMyString="aeiou"

How can I transfer sMyString into a char array?
 
ad said:
I have a string variable say:

string sMyString="aeiou"

How can I transfer sMyString into a char array?

Please see the answers you received when you asked the same question
yesterday.
 
I have a string variable say:

string sMyString="aeiou"

How can I transfer sMyString into a char array?

Use sMyString.ToCharArray() as MuZZy/Andre indicated in his answer to
your previous question on this subject.

rossum



The ultimate truth is that there is no ultimate truth
 
Back
Top