int[] num = new int[10];
for(int i =0;i<num.Length;i++)
{
num[i] = i;//不断输入数组
MessageBox.Show($"num:{num[i]}");
}
int[] ints = new int[] {12, 3, 4 };//未知长度赋值
string[] strings = new string[4] { "1", "2", "3", "4" };
MessageBox.Show(strings[0]);
c#数组使用
最新推荐文章于 2024-11-03 22:21:51 发布