前一篇 簡(jiǎn)單的介紹了Fody/PropertyChanged的使用方法, 這一篇,我們?cè)敿?xì)介紹它的一些比較重要的特性和規(guī)則
1. Attributes
通過(guò)在類或?qū)傩陨蠘?biāo)記這些特性,可以在編譯代碼時(shí),注入特定的功能
ImplementPropertyChangedAttribute
為類標(biāo)記此特性,可以實(shí)現(xiàn)INotifyPropertyChanged接口
[ImplementPropertyChanged] public class Person { public string Name { get; set; } }