コード例 #1
0
 public static void OnMultiplePropertyChanged(this INotifyMultiplePropertyChanged objSubject,
                                              params string[] lstPropertyNames)
 {
     objSubject.OnMultiplePropertyChanged(Array.AsReadOnly(lstPropertyNames));
 }
コード例 #2
0
 public static void OnMultiplePropertyChanged(this INotifyMultiplePropertyChanged objSubject,
                                              IEnumerable <string> lstPropertyNames)
 {
     objSubject.OnMultiplePropertyChanged(lstPropertyNames.ToList());
 }