Guid.Parse语句中未处理异常

时间:2013-08-08 17:33:34

标签: c# asp.net

我“继承”了一个包含以下代码行的项目:

        objLibPharmacy.UserId = Guid.Parse(Session["GroupId"].ToString());

当我运行调试器时,收到错误声明:

Object reference not set to an instance of an object.

Description: An unhandled exception occurred during the execution of the current web 
request. Please review the stack trace for more information about the error and where it 
originated in the code. 

堆栈跟踪部分如下:

[NullReferenceException: Object reference not set to an instance of an object.]

UserControl_wuc_Pharmacy.bindPharmacyPopUp()

bindPharmacyPopUp如下:

  private void bindPharmacyPopUp()
{
    /******************Bind Pharmacy Popup*********************/
    objLibPharmacy = new LibPharmacy();
    objLibPharmacy.PharmacyId = 0;
    objLibPharmacy.UserId = Guid.Parse(Session["GroupId"].ToString());
    objclsPharmacy = new clsPharmacy();
    objDs = objclsPharmacy.GetPharmacy(objLibPharmacy);
    string strFilter = "";
    if (objDs != null)
    {
        if (txtSearchPharmacy.Text != "")
            strFilter = "PharmacyName like '%" + txtSearchPharmacy.Text + "%'";
        DataView dv = objDs.Tables[0].DefaultView;
        if (strFilter != "")
            dv.RowFilter = strFilter;
        Utility.bindGridview(dv.ToTable(), gvPharmacyList);
        Utility.bindDDL(objDs.Tables[1], ddlPharmacyDetail, "Pharmacy");
        //ViewState["PharmacyTable"] = objDs.Tables[0];
    }

    /*********************************************************/
}

导致空引用的原因是什么?如何处理此类空引用以使调试无错误地运行?

3 个答案:

答案 0 :(得分:10)

如果Session["GroupId"]为空,则会发生这种情况。

在尝试使用之前,您需要检查一下。

答案 1 :(得分:4)

顾名思义,当您尝试对未初始化或已取消引用的对象执行操作时,会发生Null Reference Exception。在这种情况下,您在.ToString()上调用Session["GroupId"],这可能尚未初始化。

最好的办法是在访问之前初始化GroupId会话变量。作为解决方法,如果变量为null,则可以跳过解析:

if (Session["GroupId"] != null)
{
    objLibPharmacy.UserId = Guid.Parse(Session["GroupId"].ToString());
}

答案 2 :(得分:0)

您可以尝试Guid.TryParse方法:

Guid userId;
if (Guid.TryParse(Session["GroupId"].ToString(), out userId))
   objLibPharmacy.UserId = userId;