像這樣:C#,是否有可能避免定義私人領域,仍然使用set/get公共領域?
public String text {get; set{
// here comes some setter checking/setter logic
// finally assign the value to the var without using the setter
<is_there_a_"without_setter"_keyword?> text = value;
}
}