int[] terms = new int[400];
for (int runs = 0; runs < 400; runs++)
{
terms[runs] = value;
}
Code (C#)
List<int> list = new List<int>();
for (int runs = 0; runs < 400; runs++)
{
list.Add(value);
}
// You can convert it back to an array if you would like to
int[] terms = list.ToArray();
Date :
2013-02-17 07:44:58
By :
mr.win
No. 2
Guest
ละเวลาส่งค่าarray string ไปยังอีก form ต้องประกาศไงครับ