标签: c#
如何调用已添加到的项目:
List<string> Type = new List<string>();
答案 0 :(得分:0)
使用add Method将字符串项添加到列表中。
Type.Add(item);
使用for-each可以检索列表中的值
foreach(string value in Type) { if(value=="something") { //dosomething } }