在我的应用程序中,我添加了一个 Properties.cs 文件,其中包含我将在整个应用程序中使用的属性。我得到 NullReferenceException =>Object reference not set to an instance of an object.
这是 Properties.cs 的代码
public class Properties
{
private static string type1;
public static string Type1
{
get
{
return type1;
}
set
{
type1= value;
}
}
}
当我以我的一种形式访问此属性时,我遇到了错误。例如
if (Properties.Type1.Equals(string.Empty) || Properties.Type1.Equals(null))
{
// Do something
}