Skip to content

Instantly share code, notes, and snippets.

View btshft's full-sized avatar
🌚
What's happening?

Igor Polyakov btshft

🌚
What's happening?
  • 340Basics
View GitHub Profile
@btshft
btshft / Bindable.cs
Last active June 5, 2016 21:32
Bindable class to reduce boilerplate code in mvvm (implement INotifyPropertyChanged)
namespace Helpers
{
///<summary>
/// Reduce mvvm boilerplate
///
/// Usage:
/// public class MyViewModel : Bindable {
/// // Now this property supports INotifyPropertyChanged
/// public string MyProperty
/// {