26 references to m_value
mscorlib (26)
system\uint64.cs (26)
55
if (
m_value
< i) return -1;
56
if (
m_value
> i) return 1;
65
if (
m_value
< value) return -1;
66
if (
m_value
> value) return 1;
74
return
m_value
== ((UInt64)obj).
m_value
;
80
return
m_value
== obj;
85
return ((int)
m_value
) ^ (int)(
m_value
>> 32);
91
return Number.FormatUInt64(
m_value
, null, NumberFormatInfo.CurrentInfo);
97
return Number.FormatUInt64(
m_value
, null, NumberFormatInfo.GetInstance(provider));
103
return Number.FormatUInt64(
m_value
, format, NumberFormatInfo.CurrentInfo);
109
return Number.FormatUInt64(
m_value
, format, NumberFormatInfo.GetInstance(provider));
155
return Convert.ToBoolean(
m_value
);
160
return Convert.ToChar(
m_value
);
165
return Convert.ToSByte(
m_value
);
170
return Convert.ToByte(
m_value
);
175
return Convert.ToInt16(
m_value
);
180
return Convert.ToUInt16(
m_value
);
185
return Convert.ToInt32(
m_value
);
190
return Convert.ToUInt32(
m_value
);
195
return Convert.ToInt64(
m_value
);
200
return
m_value
;
205
return Convert.ToSingle(
m_value
);
210
return Convert.ToDouble(
m_value
);
215
return Convert.ToDecimal(
m_value
);