我正在尝试从名称值集合中获取值并尝试将其存储在字符串数组中
for (int i=0; i<arr.Length; i++)
{
arr[i] = DataRowColl.GetValue[i];
}
DataRow.Coll是我的namevaluecollection。 它给出了没有括号的参考错误, 我可以在字符串数组中分配我的集合中的值吗?? ??
答案 0 :(得分:0)
GetValue
不是NameValueCollection
的成员。该函数称为Get
。如果您想使用[]
运算符,则无法调用Get
函数。所以请致电
arr[i] = DataRowColl[i];
或:
arr[i] = DataRowColl.Get(i);