1- using System ;
1+ using PropertyChanged ;
2+ using System ;
23using System . Collections ;
34using System . Collections . Generic ;
45using System . Collections . Specialized ;
@@ -212,6 +213,7 @@ private void Insert(TKey key, TValue value, bool add)
212213 }
213214 }
214215
216+ [ SuppressPropertyChangedWarnings ]
215217 private void OnPropertyChanged ( )
216218 {
217219 OnPropertyChanged ( CountString ) ;
@@ -220,29 +222,34 @@ private void OnPropertyChanged()
220222 OnPropertyChanged ( ValuesName ) ;
221223 }
222224
225+ [ SuppressPropertyChangedWarnings ]
223226 protected virtual void OnPropertyChanged ( string propertyName )
224227 {
225228 PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( propertyName ) ) ;
226229 }
227230
231+ [ SuppressPropertyChangedWarnings ]
228232 private void OnCollectionChanged ( )
229233 {
230234 OnPropertyChanged ( ) ;
231235 CollectionChanged ? . Invoke ( this , new NotifyCollectionChangedEventArgs ( NotifyCollectionChangedAction . Reset ) ) ;
232236 }
233237
238+ [ SuppressPropertyChangedWarnings ]
234239 private void OnCollectionChanged ( NotifyCollectionChangedAction action , KeyValuePair < TKey , TValue > changedItem )
235240 {
236241 OnPropertyChanged ( ) ;
237242 CollectionChanged ? . Invoke ( this , new NotifyCollectionChangedEventArgs ( action , changedItem ) ) ;
238243 }
239244
245+ [ SuppressPropertyChangedWarnings ]
240246 private void OnCollectionChanged ( NotifyCollectionChangedAction action , KeyValuePair < TKey , TValue > newItem , KeyValuePair < TKey , TValue > oldItem )
241247 {
242248 OnPropertyChanged ( ) ;
243249 CollectionChanged ? . Invoke ( this , new NotifyCollectionChangedEventArgs ( action , newItem , oldItem ) ) ;
244250 }
245251
252+ [ SuppressPropertyChangedWarnings ]
246253 private void OnCollectionChanged ( NotifyCollectionChangedAction action , IList newItems )
247254 {
248255 OnPropertyChanged ( ) ;
0 commit comments