1.) 不想寫Constructor,但又想初始化的方式 但想初始化的Member必須為public
Class Boo { public int a; } //any where Boo test = new Boo(){a = 99};
---------------