假設我有一類以下(擴展MVVMLight的ViewModelBase):類裏面,你的價值分配給屬性或背場
private ObservableCollection<Merchant> merchants;
public ObservableCollection<Merchant> Merchants
{
get { return merchants; }
set { Set(nameof(Merchants), ref merchants, value); }
}
裏面我的課,我應該初始化值財產或支持領域?而在我的課程方法中,我應該使用屬性還是後臺?
我只是在學習,我傾向於使用兩者,而我沒有看到任何區別。
簡而言之:在課堂內部,我是否應該使用該屬性或其支持域?
使用c#6,您現在也可以使用只讀屬性。 「歡迎來到明天的世界!」 – ANeves