Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am arktronic on github.
  • I am arktronic (https://keybase.io/arktronic) on keybase.
  • I have a public key whose fingerprint is 651E C0FE 0FBD 92D7 EB59 F9F2 A86D CC95 EFCF DFB3

To claim this, I am signing this object:

@arktronic
arktronic / gist:3730852
Created September 16, 2012 02:55
OnPropertyChanged with expressions
public bool Something
{
get
{
return _something;
}
set
{
if(value == _something) return;
_something = value;