Skip to content

Instantly share code, notes, and snippets.

@jbogard
Created February 19, 2014 22:43
Show Gist options
  • Save jbogard/9103240 to your computer and use it in GitHub Desktop.
Save jbogard/9103240 to your computer and use it in GitHub Desktop.
public class NullableConverterFactoryOverride : INullableConverterFactory
{
public INullableConverter Create(Type nullableType)
{
return new NullableConverterImpl(new NullableConverter(nullableType));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment