Skip to content

Instantly share code, notes, and snippets.

@vcsjones
Created December 14, 2012 21:46
Show Gist options
  • Save vcsjones/4288926 to your computer and use it in GitHub Desktop.
Save vcsjones/4288926 to your computer and use it in GitHub Desktop.
//Don't Want
Func<bool, bool> someFunc = null;
someFunc = b => someFunc(b);
//Want (Mono C# compiler can do this)
Func<bool, bool> someFunc = b => someFunc(b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment