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