1
public static class MySampleClass
{
public static string sampleProperty1
{
get { return GetValue("sampleProperty1"); }
}
public static string GetValue(string Key)
{
// Here is the code to get value from table based Key.
return Key;
}
}
我有像SampleProperty1 MySampleClass許多靜態屬性... 一旦我的屬性設置的值,我不能將值重置爲相同的屬性。
這是哪一種語言? –
c#,Mvc應用程序。 –
你如何爲你的房產設置價值?它看起來像sampleProperty1將始終具有值「sampleProperty1」。 GetValue的目的是什麼? – dsolimano