c# 我为什么不能获得string[]数组个数和元素的
代码如下string[]temArr=newstring[]{11111,22222,33333,44444,55555,};for(inti=0;i<temArr.Le...
代码如下
string[] temArr = new string[] { 11111,22222,33333,44444,55555, };
for (int i = 0; i <temArr .Length; i++)
{
MessageBox.Show(temArr[i]);
}
为什么总是只显示一行还是全部的11111,22222,33333,44444,55555,
而不是
11111
22222
33333
44445
55555 展开
string[] temArr = new string[] { 11111,22222,33333,44444,55555, };
for (int i = 0; i <temArr .Length; i++)
{
MessageBox.Show(temArr[i]);
}
为什么总是只显示一行还是全部的11111,22222,33333,44444,55555,
而不是
11111
22222
33333
44445
55555 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询