gpt4 book ai didi

c# - 如何将新的 Guid 添加到字符串列表?

转载 作者:太空宇宙 更新时间:2023-11-03 19:25:41 25 4
gpt4 key购买 nike

我收到“对象引用未设置到实例...”错误。我评论这行...


public Guid Login(string userName, string password)
{
Guid result = new Guid();<p></p>

<pre><code> if (!string.IsNullOrEmpty(userName) && !string.IsNullOrEmpty(password))
{
userName = userName.Trim();
password = password.Trim();

Member member = BusinessDb.LoginDbJobs.GetUser(userName);

if (member != null && member.PasswordDb == password)
{
result = Guid.NewGuid();
Members.Live.Add(result); //--->Object reference not set to an instance of an object.
}
}

return result;
}
</code></pre>

<p></p>

成员类是;


...
public class Members
{
public static List< Guid > Live;
}
...

那么如何将“新 Guid”添加到“List Live”?

谢谢...

最佳答案

我认为你应该使用:

public class Members
{
public static List<Guid> Live = new List<Guid>();
}

你声明了 Live 但没有初始化它,所以 Live 是空的!!

关于c# - 如何将新的 Guid 添加到字符串列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8922374/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com