Skip to content

Instantly share code, notes, and snippets.

@imbaker
Created July 31, 2014 12:36
Show Gist options
  • Save imbaker/12f32712dfc8bec2f555 to your computer and use it in GitHub Desktop.
Save imbaker/12f32712dfc8bec2f555 to your computer and use it in GitHub Desktop.
IfNotNull extension method
public static U IfNotNull < T, U > (this T t, Func <T, U> function)
{
return t != null ? function (t) : default (U);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment