爲什麼靜態構造函數在另一個類中引用 常量字符串時會拋出異常。C#構造函數和常量神祕
class MyClass
{
static MyClass()
{
ExamineLog();
}
static ExamineLog()
{
FilePath = HttpContext.Current.Server.MapPath(Helper.LogConfiguration);
}
}
class Helper
{
public const string LogConfiguration= "\rootpath\counters.txt";
}
拋出的異常是未將對象引用設置爲對象的實例。堆棧跟蹤指向嘗試讀取常量值的行。有什麼想法嗎?
Aaargh!格式化。修理它。 – 2012-03-19 19:10:42
'static ExamineLog()'? – BoltClock 2012-03-19 19:11:22