Skip to content

Instantly share code, notes, and snippets.

@progre
Created December 13, 2012 00:23
Show Gist options
  • Save progre/4272968 to your computer and use it in GitHub Desktop.
Save progre/4272968 to your computer and use it in GitHub Desktop.
Maybe Monad on C#
static class MaybeExtensions
{
public static TResult Bind<TSender, TResult>(this TSender obj, Func<TSender, TResult> func)
{
if (obj == null)
return default(TResult);
return func(obj);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment