示例#1
0
        protected override object ReadDecimal(SqlType type)
        {
            this.ReadNumberField(type);
            if (this._value == null)
            {
                return(null);
            }
            decimal a = Convert.ToDecimal(this._value, CultureInfo.InvariantCulture);

            return(type.ConvertToTypeLimits(null, a));
        }