I have Post the Code
Create Array values and Assign Elements - C#
=============================================
protected void Bt_Submit1_Click1(object sender, EventArgs e)
{
string[] charArray = new string[3];
charArray[0] = "AAA";
charArray[1] = "BBB";
charArray[2] = "CCC";
}