0

在这一行运行 c# 代码后,我得到了 nullrefernce 异常

  var data = info.details.Split('|');

c#代码:

 public studentinfo SaveData(studentinfo info)
        {
            bool returnBool=false;
            SqlConnection con;

                var data = info.details.Split('|');


                var response = new studentinfo
                {
                    ID = data[0],
                    Name = data[1],
                    Project = data[2],
                    Result = data[3]
                };


            con = new SqlConnection(ConfigurationManager.ConnectionStrings["Myproject.Properties.Settings.MyConnection"].ConnectionString);

            string sqlStr = "INSERT INTO Result (ID,Name,Project,Result) values('" + data[0] + "', '" + data[1] + "', '" + data[2] + "', '" + data[3] + "')";
            SqlCommand dbCommand = new SqlCommand(sqlStr, con);

             try
            {
                con.Open();
                if (dbCommand.ExecuteNonQuery() != 0)
                {
                    returnBool = true;
                }

                if (!data.Equals(null))
                {
                    returnBool = true;
                }
                con.Close();
            }
            catch
            {
               returnBool= false;
            }
             con.Close();
             return response;

        }

我试图实现:

if (!data.Equals(null))
            {
                returnBool = true;
            }

但即便如此,它也会给出相同的对象引用异常,请帮我解决它。谢谢

4

3 回答 3

6

尝试这个

if(data != null)
{

}

或者

if(object.ReferenceEquals(data,null))
{

}

可能正如@zigdawgydawg 指出的那样,异常不会在检查中data,因为string.Split将永远不会返回null。所以,你需要避免空参数。

if(info==null || info.details == null)
{
    return null;//Or throw new ArgumentException();
}
于 2013-08-28T19:44:35.663 回答
2

Null 引用异常是因为infoorinfo.details为空。在执行Split.

于 2013-08-28T19:45:30.337 回答
0

在尝试字符串拆分之前,您需要检查 null

if (info == null)
{
    // do not attempt to split details, maybe throw something here
}

但是,您可能想看看它SaveData(studentinfo info)是如何被调用的,以及在什么情况下它会被传递一个空studentinfo对象。

于 2013-08-28T19:53:29.667 回答