在這個簡單的示例中爲什麼StrA
在Sample()
函數中無法用「Hi World」字符串進行設置?無法在靜態字段中設置變量值
string StrA { get; set; }
private void button1(object sender, EventArgs e)
{
StrA = "Hi World"; //=======> Get StrA value
}
public static string Sample()
{
MyClass MyClass1 = new MyClass();
string a = MyClass1.StrA; //==========> Can't Set StrA value with "Hi World" string ???
return (MessageBox.Show(a).ToString());
}
你能後你有課嗎? 「MyClass」類中的所有代碼都是? – TheDude
MyClass just還包含調用Sample()的另一個事件按鈕函數。 –