String Split to stored Array.

Jayakumars
Posted by Jayakumars under ASP.NET AJAX category on | Points: 40 | Views : 1352
I have Post the Code
String Split to stored Array.
======================================

protected void Bt_Submit1_Click1(object sender, EventArgs e)
{
string st = "JESUS";
string[] ar1 = new string[st.Length];
for (int i = 0; i < st.Length; i++)
{
ar1[i] = st[i].ToString();
}


}

Comments or Responses

Login to post response