CalculatedProperties
CalculatedProperties copied to clipboard
Easy-to-use calculated properties for MVVM apps
Short living dependency can't be garbage collected when depends on long living source, much like in classic events. Created a pull request with a test and suggested fix.
Let say we have this: ```csharp bool IsHorseVisible { get ; set } // trigger property bool IsCatVisible { get ; set } // trigger property bool IsAnimalVisible => Calculated(()...
First, thanks for yet another useful library. Seems to work wonderfully, and really simplifies triggering INPC with calculated properties. While my preferred method so far is PropertyChanged.Fody (due to being...
There's a memory leak if source property sits on a long living object while target is on a short living object. Simple fix is to wrap target properties in WeakReference