对象引用未设置为对象的实例。
我在逐行验证时收到此错误。任何人都帮我.............?
答案 0 :(得分:2)
这意味着您正在尝试取消引用空引用。像这样:
string text = null;
int length = text.Length;
如果没有看到任何代码,我们就无法再为您提供建议。基本上,找出哪个引用为null并找出如何处理它或防止它发生。
答案 1 :(得分:0)
您正尝试在代码中使用未初始化的变量。
确保在使用之前初始化所有变量:
string x = null;
x.Replace(' ', 'x'); // Exception: Object reference not set to an instance of an object.
string y = "This is a test";
y.Replace(' ', 'x'); // No problem, y = "Thisxisxaxtest"