我有一个SPListItem
并且我有一个列名数组。当我尝试SPListItem
使用以下代码访问值时:
for(int i=0;i<arrColName.length;i++)
{
string tempValue = item[arrColName[i]].ToString();
// Works fine in case the the specific column in the list item is not null
// Argument exception - Values does not fall witing expected range
// exception in case the value //is null
}