26 references to m_value
mscorlib (26)
system\int64.cs (26)
56
if (
m_value
< i) return -1;
57
if (
m_value
> i) return 1;
66
if (
m_value
< value) return -1;
67
if (
m_value
> value) return 1;
75
return
m_value
== ((Int64)obj).
m_value
;
81
return
m_value
== obj;
86
return (unchecked((int)((long)
m_value
)) ^ (int)(
m_value
>> 32));
92
return Number.FormatInt64(
m_value
, null, NumberFormatInfo.CurrentInfo);
98
return Number.FormatInt64(
m_value
, null, NumberFormatInfo.GetInstance(provider));
104
return Number.FormatInt64(
m_value
, format, NumberFormatInfo.CurrentInfo);
110
return Number.FormatInt64(
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
m_value
;
200
return Convert.ToUInt64(
m_value
);
205
return Convert.ToSingle(
m_value
);
210
return Convert.ToDouble(
m_value
);
215
return Convert.ToDecimal(
m_value
);