You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Considering adding something like to help reduce some boilerplate (though I recommend using something like PropertyChanged.Fody to get rid of backing fields altogether).
When added to PropertyChangedBase, the following calls streamlines implementing properties:
For example:
#region Contents Property
public string Contents
{
get => _contents;
set => SetValue(ref _contents, value, nameof(Contents);
}
private string _contents;
#endregion
Thanks!
The text was updated successfully, but these errors were encountered: