if i have this code, how can i put alle the chars in my string in to the Char array?
i know this wont compile but the logic shows what im trying to do.
private void button1_Click(object sender, EventArgs e)
{
string stringX = textbox1.Text;
int strlen = stringX.Length();
char[] arrayX = new char[strlen];
arrayX = stringX.Split("");
}