前一篇 簡單的介紹了Fody/PropertyChanged的使用方法, 這一篇,我們詳細介紹它的一些比較重要的特性和規(guī)則

1. Attributes

通過在類或屬性上標記這些特性,可以在編譯代碼時,注入特定的功能

ImplementPropertyChangedAttribute

為類標記此特性,可以實現(xiàn)INotifyPropertyChanged接口

[ImplementPropertyChanged]
public class Person 
{
    public string Name { get; set; }
}

網(wǎng)友評論