You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
runceel
changed the title
FilteredReadOnlyObservableCollectionのSource.CollectionChangedへのイベント購読が、Dispose時に購読解除できていないようです。
The subscription to the Source.CollectionChanged event of FilteredReadOnlyObservableCollection is not being unsubscribed at the time of Dispose.
Oct 31, 2023
English
https://github.com/runceel/ReactiveProperty/blob/a5590692978043ab3ab8e844e2294b25d4a08f50/Source/ReactiveProperty.NETStandard/Helpers/FilteredReadOnlyObservableCollection.cs#L351C55-L351C55
It is written as
CollectionChanged -= Source_CollectionChanged;
However, it seems to need to be
Source.CollectionChanged -= Source_CollectionChanged;
Japanese
https://github.com/runceel/ReactiveProperty/blob/a5590692978043ab3ab8e844e2294b25d4a08f50/Source/ReactiveProperty.NETStandard/Helpers/FilteredReadOnlyObservableCollection.cs#L351C55-L351C55
CollectionChanged -= Source_CollectionChanged;
となっていますが、
Source.CollectionChanged -= Source_CollectionChanged;
である必要がありそうです。
The text was updated successfully, but these errors were encountered: