Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created December 5, 2019 00:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/d2319ef16b7a6ea2f004025c33c16230 to your computer and use it in GitHub Desktop.
Save icebeam7/d2319ef16b7a6ea2f004025c33c16230 to your computer and use it in GitHub Desktop.
HarryPotterApp: BaseViewModel.cs
using System.ComponentModel;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
namespace HarryPotterApp.ViewModels
{
public class BaseViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName]string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs((propertyName)));
}
protected bool SetProperty<T>(ref T storage, T value, [CallerMemberName]string propertyName = null)
{
if (EqualityComparer<T>.Default.Equals(storage, value))
{
return false;
}
storage = value;
OnPropertyChanged(propertyName);
return true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment