30 references to m_value
mscorlib (30)
system\single.cs (30)
91
if (
m_value
< f) return -1;
92
if (
m_value
> f) return 1;
93
if (
m_value
== f) return 0;
96
if (IsNaN(
m_value
))
106
if (
m_value
< value) return -1;
107
if (
m_value
> value) return 1;
108
if (
m_value
== value) return 0;
111
if (IsNaN(
m_value
))
151
float temp = ((Single)obj).
m_value
;
152
if (temp ==
m_value
) {
156
return IsNaN(temp) && IsNaN(
m_value
);
161
if (obj ==
m_value
) {
165
return IsNaN(obj) && IsNaN(
m_value
);
170
float f =
m_value
;
182
return Number.FormatSingle(
m_value
, null, NumberFormatInfo.CurrentInfo);
188
return Number.FormatSingle(
m_value
, null, NumberFormatInfo.GetInstance(provider));
194
return Number.FormatSingle(
m_value
, format, NumberFormatInfo.CurrentInfo);
200
return Number.FormatSingle(
m_value
, format, NumberFormatInfo.GetInstance(provider));
274
return Convert.ToBoolean(
m_value
);
284
return Convert.ToSByte(
m_value
);
289
return Convert.ToByte(
m_value
);
294
return Convert.ToInt16(
m_value
);
299
return Convert.ToUInt16(
m_value
);
304
return Convert.ToInt32(
m_value
);
309
return Convert.ToUInt32(
m_value
);
314
return Convert.ToInt64(
m_value
);
319
return Convert.ToUInt64(
m_value
);
324
return
m_value
;
329
return Convert.ToDouble(
m_value
);
334
return Convert.ToDecimal(
m_value
);