在我的應用程序中,我添加了一個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
}
好吧,是'Type1'集,或者它仍然有默認的'空'價值? –
使用'string.IsNullOrEmpty' – Charleh
檢查'Properties!= null'和'Type1!= null'太! – Belogix