3 writes to m_value
System.Data.Common (3)
System\Data\SQLTypes\SQLDouble.cs (3)
32m_value = 0.0; 43m_value = value; 417m_value = XmlConvert.ToDouble(reader.ReadElementString());
23 references to m_value
System.Data.Common (23)
System\Data\SQLTypes\SQLDouble.cs (23)
60return m_value; 80return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null!); 95return x.IsNull ? Null : new SqlDouble(-x.m_value); 107double value = x.m_value + y.m_value; 120double value = x.m_value - y.m_value; 133double value = x.m_value * y.m_value; 146if (y.m_value == 0.0) 149double value = x.m_value / y.m_value; 222return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 232return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 237return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 242return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 247return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 430writer.WriteString(XmlConvert.ToString(m_value));