Skip to content

Instantly share code, notes, and snippets.

@hazzik
Created February 13, 2013 04:19
Show Gist options
  • Save hazzik/4942230 to your computer and use it in GitHub Desktop.
Save hazzik/4942230 to your computer and use it in GitHub Desktop.
public static class NullableTypeEx
{
public static Type UnwrapIfNullable(this Type type)
{
return type.IsNullable() ? type.GetGenericArguments()[0] : type;
}
public static bool IsNullable(this Type type)
{
return type.IsGenericType && type.GetGenericTypeDefinition() == typeof (Nullable<>);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment