string[] dbId = new string {"1111111101","11111111102"};//foreach (string ldid in dbId)定义字符串数组并赋值时报错:string并不包含ADD的定义,这是为什么,又如何赋值呢?
1 回答
繁星点点滴滴
TA贡献1803条经验 获得超3个赞
string[] dbId = new string[] { "1111111101", "11111111102" };//
foreach (string ldid in dbId)
{
Console.WriteLine(ldid);
}
兄弟,你少了一个中括号。
//还可以这样赋值
string[] dbId = new string[10] ;
for(int i=0;i<dbId.Length;i++)
{
dbId[i] = Console.ReadLine();
}
//不过建议你用集合
ArrayList ary = new ArrayList();
ary.Add(111111101);
ary.Add(111111102);
- 1 回答
- 0 关注
- 3286 浏览
添加回答
举报
0/150
提交
取消