List<string> Name= new List<string>(); colorList.Add ("Muhil"); colorList.Add ("Muhil1");
foreach (string objName in Name) { Console.WriteLine ( objName ); }
string str=Name[0];
string[] strArray=Name.ToArray();
Login to post response