异常标题:检查对象是否为Null

本文关键字:是否 Null 对象 检查 标题 异常 | 更新日期: 2023-09-27 18:28:23

我在数据库中创建了表N_Roles_Users,如果用户名与现有登录用户匹配,我想显示它的值。

我在下面写了这个代码。但它正在生成检查对象是否为Null的异常。

// currentUser="UserA";
public List<string> GetUserRoles( string currentUser)
{
        N_Roles_Users allroles = new N_Roles_Users(); //N_Roles_Users is database table name. 
        List<string> roleslist = new List<string>();
        List<char> temp = new List<char>();
        temp = allroles.user_name.ToList();
        List<char> tempa = new List<char>();
        tempa = allroles.role_name.ToList();
        for (int i = 0; i < temp.Count; i++) // Loop through List with for
        {
            if (currentUser == temp[i].ToString())
            {
                roleslist.Add(tempa[i].ToString());
                MessageBox.Show(tempa[i].ToString());
            }
        }
        return roleslist;
}

有人能指导我如何解决这个问题吗?

异常标题:检查对象是否为Null

temp = allroles.user_name.ToList(); is the line of exception i guess.

在之前设置allroles.user_name = "some value"

这条线路

temp = allroles.user_name.ToList();

快乐编码:)

检查此条件

//currentUser="UserA";

public List<string> GetUserRoles( string currentUser)
        {
        N_Roles_Users allroles = new N_Roles_Users();
        List<string> roleslist = new List<string>();
        List<char> temp = new List<char>();
         **if(allroles.user_name.ToList()!=null &&  allroles.user_name.ToList().Count!=0)
          {
         temp = allroles.user_name.ToList();
         }**
        List<char> tempa = new List<char>();
        tempa = allroles.role_name.ToList();
        for (int i = 0; i < temp.Count; i++) // Loop through List with for
            {
            if (currentUser == temp[i].ToString())
                {
                roleslist.Add(tempa[i].ToString());
                MessageBox.Show(tempa[i].ToString());
                }
            }
        return roleslist;
        }