3 writes to m_value
System.Data (3)
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (3)
53m_value = (float)0.0; 64m_value = value; 500m_value = XmlConvert.ToSingle(reader.ReadElementString());
23 references to m_value
System.Data (23)
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (23)
89return m_value; 115return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 134return x.IsNull ? Null : new SqlSingle(-x.m_value); 148float value = x.m_value + y.m_value; 163float value = x.m_value - y.m_value; 178float value = x.m_value * y.m_value; 193if (y.m_value == (float)0.0) 196float value = x.m_value / y.m_value; 297return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 311return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 318return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 325return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 332return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 513writer.WriteString(XmlConvert.ToString(m_value));