【转】CLR20R3 程序终止的几种解决方案 - Asharp - 博客园
clr20r3 system.InvalidOperationException 程序终止的几种解决方...
...AUTOCAD2010 在WIN7下出现打不开,且问题事件名称为CLR20r3 或...
请问是什么原因导致的异常?
@yxf2011:
我查找的错误原因是这样的:
this.toolStripStatusLabel2.Text = userList.Count.ToString();为空引用实际上userList.Count=20并不是NULL,这是怎么回事啊
会否是你的这个toolStripStatusLabel2是个空对象呢?
System.NullReferenceException 错误很明显,你查一下调用堆栈,是由哪些函数调用导致了此错误。
我查找的错误原因是这样的:
this.toolStripStatusLabel2.Text = userList.Count.ToString();为空引用实际上userList.Count=20并不是NULL,这是怎么回事啊
@yxf2011: this.toolStripStatusLabel2.Text = userList.Count.ToString(); 出现 NullReferenceException,有二种情况:
1,this.toolStripStatusLabel2 == null
2,userList == null;