c#向字典中添加NullReferenceException

本文关键字:添加 NullReferenceException 字典 | 更新日期: 2023-09-27 18:02:26

下面是经过删减的代码片段。tupleUnits。Key和tupleR是非空对象。

public partial class AllLicenseeUnits : System.Web.UI.Page {
  protected Dictionary<int, TupleRecordsRange> unitsInTuple = new Dictionary<int, TupleRecordsRange>();
  public Paginator getPaginator(int itemsPerPage) {
    if (unitsInTuple == null) {
        Dictionary<int, int> tuplesUnits = DataAccess.CountLicenseeUnitsTuple(Session["licensee"] as Licensee);
        tuplesUnits = tuplesUnits.Where(item => item.Value > 0).ToDictionary(item => item.Key, item => item.Value); 
        int index = 0;
        foreach(KeyValuePair<int, int> tupleUnits in tuplesUnits) {
            TupleRecordsRange tupleR =  new TupleRecordsRange{start_index = index, end_index= (index + tupleUnits.Value -1)};
            unitsInTuple.Add(tupleUnits.Key, tupleR);
            index += tupleUnits.Value;
        }
    }
    int sumUnits = unitsInTuple.Sum(item => item.Value.totalRecords);
    Paginator paginator = new Paginator(itemsPerPage, sumUnits);
    if (Request.QueryString["page"] != null)
    {
        paginator.currentPage = int.Parse(Request.QueryString["page"]);
    }
    return paginator;
  }
}

我不明白为什么会发生这种情况,因为我传递给. add()的两个参数都不是空的。这些是手表:

-       tupleUnits  {[1, 3081]} System.Collections.Generic.KeyValuePair<int,int>
+       tupleR  {AllLicenseeUnits.TupleRecordsRange}    AllLicenseeUnits.TupleRecordsRange

堆栈跟踪:

  at AllLicenseeUnits.getPaginator(Int32 itemsPerPage) in C:'Users'User'Documents'Bla_Devel'AllLicenseeUnits.aspx.cs:line 46
   at AllLicenseeUnits.Page_Load(Object sender, EventArgs e) in C:'Users'User'Documents'Bla_Devel'AllLicenseeUnits.aspx.cs:line 32
   at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e)
   at System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
   at System.Web.UI.Control.OnLoad(EventArgs e)
   at System.Web.UI.Control.LoadRecursive()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

c#向字典中添加NullReferenceException

在您的示例中,您在添加字典之前没有创建字典。

if (unitsInTuple == null) {
            ...
            unitsInTuple.Add(tupleUnits.Key, tupleR);
            ...
        }
    }