如何解决未将对象引用设置为对象的实例?

这个问题在这里已经有了答案:

  • 什么是NullReferenceException,以及如何解决它? 33个答案

  • 您需要首先初始化列表:

    protected List<string> list = new List<string>();
    

    我想你只是需要;

    List<string> list = new List<string>();
    list.Add("hai");
    

    之间有区别

    List<string> list; 
    

    List<string> list = new List<string>();
    

    当你在这种情况下没有使用new关键字时,你的list没有初始化。 而当你试图添加hai ,很明显,你得到一个错误。

    链接地址: http://www.djcxy.com/p/28035.html

    上一篇: How to solve Object reference not set to an instance of an object.?

    下一篇: Object reference not set to an instance of an object.