3 writes to _value
System.Data.Common (3)
System\Data\SQLTypes\SQLSingle.cs (3)
29_value = (float)0.0; 41_value = value; 427_value = XmlConvert.ToSingle(reader.ReadElementString());
23 references to _value
System.Data.Common (23)
System\Data\SQLTypes\SQLSingle.cs (23)
61return _value; 81return IsNull ? SQLResource.NullString : _value.ToString((IFormatProvider)null!); 96return x.IsNull ? Null : new SqlSingle(-x._value); 108float value = x._value + y._value; 121float value = x._value - y._value; 134float value = x._value * y._value; 147if (y._value == (float)0.0) 150float value = x._value / y._value; 231return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value == y._value); 241return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value < y._value); 246return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value > y._value); 251return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value <= y._value); 256return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x._value >= y._value); 440writer.WriteString(XmlConvert.ToString(_value));