Guid.Passe语句中未处理异常
本文关键字:未处理 异常 语句 Passe Guid | 更新日期: 2023-09-27 18:26:59
我"继承"了一个包含以下代码行的项目:
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];
}
/*********************************************************/
}
是什么导致了空引用?我如何处理这样的空引用,以便调试运行时不会出错?
如果Session["GroupId"]
为null,就会发生这种情况。
在尝试使用之前,您需要检查一下。
顾名思义,当您试图对未初始化或已取消引用的对象执行操作时,会发生Null引用异常。在这种情况下,您在Session["GroupId"]
上调用.ToString()
,它可能还没有初始化。
最好的方法是在访问GroupId会话变量之前初始化它
if (Session["GroupId"] != null)
{
objLibPharmacy.UserId = Guid.Parse(Session["GroupId"].ToString());
}
您可以尝试Guid.TryParse
方法:
Guid userId;
if (Guid.TryParse(Session["GroupId"].ToString(), out userId))
objLibPharmacy.UserId = userId;