//create the array
int[] ml = new int[7]; //{ 5, 3, 7, 9, 2, 6, 8, };
//loop through the content of the ml array
string x = "";
for (int i = 0; i < ml.Length; i++)
{
x += Convert.ToInt32(ml[i]) + " ";
}
MessageBox.Show(x);
No comments:
Post a Comment