I have the following code:
ViewPortViewModel _Trochoid;
public ViewPortViewModel Trochoid
{
get { return _Trochoid; }
set { this.RaiseAndSetIfChanged(value); }
}
using ReactiveUI INPC support. The compiler is always warning me that Trochoid
is never assigned to and will always be null. However due to the magic that RaiseAndSetIfChanged
performs through CallerMemberName
support, the code does work and the compiler is wrong.
How do I cleanly suppress these warnings in my code?