Skip to content

Instantly share code, notes, and snippets.

View jimmylewis's full-sized avatar

Jimmy Lewis jimmylewis

  • Microsoft
  • Redmond, WA, USA
View GitHub Profile
@jimmylewis
jimmylewis / BindableBase.cs
Created September 10, 2019 07:43
BindableBaseWithThrottling
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace ThrottlingReview
{
public abstract class BindableBase : INotifyPropertyChanged
{
protected virtual bool SetProperty<T>(ref T storage, T value, [CallerMemberName] string propertyName = "")
{