Catnap.Database.ValueConverter.ResolveType C# (CSharp) Method

ResolveType() private method

private ResolveType ( Type underlyingType ) : IType
underlyingType System.Type
return IType
        private IType ResolveType(Type underlyingType)
        {
            return types.ContainsKey(underlyingType)
                ? types[underlyingType]
                : defaultType;
        }