星期四, 10月 25, 2007

取得運算過的static變數

好難形容
總之就是不new一個class
而要直接使用ClassName.attribute
public class a
{
public static string aString="hi";

static
{
aString += " this is how it works";
}
}

ex. a.aString; ==> hi this is how it works

沒有留言: