I'm using the nameof function to get a property name as a string thus:
public bool IsRunning => ...;
...
RaisePropertyChanged(nameof(IsRunning));
ReSharper highlights this with the warning:
Explicit argument passed to parameter with caller info attribute
The code works, I was just wondering if the above warning is something I should worry about.
ObservableObject
inGalaSoft.MVVMLight
) was written before nameof existed, I guess it would be different if written now. – Doit