6 writes to m_value
System.Data (6)
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (6)
66m_value = 0; 73m_value = value; 83m_value = (long)value * x_lTickBase; 95m_value = value * x_lTickBase; 119m_value = fPositive ? (long)ulValue : unchecked(- (long)ulValue); 639this.m_value = money.m_value;
23 references to m_value
System.Data (23)
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (23)
167long value = m_value; 168if (m_value < 0) { 170value = - m_value; 183long ret = m_value / (x_lTickBase / 10); 202return m_value; 296if (x.m_value == MinLong) 298return new SqlMoney(-x.m_value, 0); 310return(x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x.m_value + y.m_value), 0); 322return(x.IsNull || y.IsNull) ? Null : new SqlMoney(checked(x.m_value - y.m_value), 0); 432return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 446return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 453return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 460return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 467return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 618return IsNull ? 0 : m_value.GetHashCode(); 639this.m_value = money.m_value;