Is there any way to use WhenAny for the property of a value that is currently null and will be set later?
Like this:
public Server SelectedServer {get;set;}
public TestClass()
{
this.WhenAny(SelectedServer.Items.Changed, x => x).Subscribe(/*Do something*/);
}
SelectedServer is initially null, will be set by through user interaction and therefor I always get a NullReferenceException in the Constructor.