Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下行似乎相当简单并且可以编译,但是每次我都会在该行上遇到错误
List<long?> persistantIds = new List<long?>();
我收到的错误消息是经典的“对象引用未设置为对象的实例”。
它为什么会出错是没有意义的。我还看到一件奇怪的事情是当我在 VS2012 中查看值时,值显示为
'' 一片空白
我正在使用 VS 2012.2,这在我的机器上效果很好。
static void Main(string[] args) { List<long?> persistantIds = new List<long?>(); Console.WriteLine(persistantIds.Count); Console.ReadLine(); }
尝试进行干净的构建,如果所有其他方法都失败,请重新启动 VS。