我收到此错误:
找不到类型或命名空间名称“myObject”
在这条线上:
if (typeof(myObject) != typeof(String))
这是周围的代码:
for (int rCnt = 1; rCnt <= EmailList.Rows.Count; rCnt++)
{
object myObject = (EmailList.Cells[rCnt, 1] as Excel.Range).Value2;
if (typeof(myObject) != typeof(String))
continue;
cell = (string)(EmailList.Cells[ rCnt,1] as Excel.Range).Value2;
if (cell!=null)
emails.Add(cell.ToString());
}
我究竟做错了什么?我显然是在声明 myObject. 非常感谢您的指导。