当前位置:   article > 正文

【c#】Object reference not set to an instance of an object.

object reference not set to an instance of an object

错误原因: 你调用的对象是空的。

比如,User对象是string类型,而你进行了Length属性操作。
而假如string没有传过去,接收到的是null没有length这个属性,就会返回错误。

if(input.User.Length>0){
  ...
}
  • 1
  • 2
  • 3

正确写法,先判断。其它类型的数据也要有相关判断。

if(input.User!=null && input.User.Length>0){
  ...
}
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/563762
推荐阅读