Dashing.Extensions.TypeExtensions.TypeTakesPrecisionAndScale C# (CSharp) Method

TypeTakesPrecisionAndScale() public static method

public static TypeTakesPrecisionAndScale ( this type ) : bool
type this
return bool
        public static bool TypeTakesPrecisionAndScale(this DbType type) {
            switch (type) {
                case DbType.Decimal:
                    return true;

                default:
                    return false;
            }
        }
    }