6 writes to _value
System.Data.Common (6)
System\Data\SQLTypes\SQLMoney.cs (6)
43_value = 0; 51_value = value; 60_value = value * s_lTickBase; 71_value = value * s_lTickBase; 94_value = fPositive ? (long)ulValue : unchecked(-(long)ulValue); 575_value = money._value;
23 references to _value
System.Data.Common (23)
System\Data\SQLTypes\SQLMoney.cs (23)
135long value = _value; 136if (_value < 0) 139value = unchecked(-_value); 150long ret = _value / (s_lTickBase / 10); 216return _value; 262if (x._value == s_minLong) 264return new SqlMoney(-x._value, 0); 275return (x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x._value + y._value), 0); 287return (x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x._value - y._value), 0); 374return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value == y._value); 384return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value < y._value); 389return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value > y._value); 394return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value <= y._value); 399return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value >= y._value); 558IsNull ? 0 : _value.GetHashCode(); 575_value = money._value;