3 writes to m_value
System.Data (3)
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (3)
57m_value = 0.0; 67m_value = value; 496m_value = XmlConvert.ToDouble(reader.ReadElementString());
23 references to m_value
System.Data (23)
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (23)
87return m_value; 113return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 132return x.IsNull ? Null : new SqlDouble(-x.m_value); 146double value = x.m_value + y.m_value; 161double value = x.m_value - y.m_value; 176double value = x.m_value * y.m_value; 191if (y.m_value == (double)0.0) 194double value = x.m_value / y.m_value; 292return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 306return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 313return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 320return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 327return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 509writer.WriteString(XmlConvert.ToString(m_value));