Hey,
short question:
I want to notify my ui, so my guard method is invoked once again.. But unfortunately I get an syntax-error using this statement:
NotifyOfPropertyChange(() => CanLogin);
My class inherits PropertyChangedBase.
The error message:
The type arguments for method
'void Calidburn.Miro:PropertyChangedBase.NotifyOfPropertyChange<TProperty>(Expression<Func<TProperty>>)'
cannot be inferred from the usage. Try specifying the type arguments explicitly.
Do I miss some overload or is something else wrong? What else could be the problem?