26 references to m_value
mscorlib (26)
system\int16.cs (26)
55
return
m_value
- ((Int16)value).
m_value
;
62
return
m_value
- value;
69
return
m_value
== ((Int16)obj).
m_value
;
75
return
m_value
== obj;
80
return ((int)((ushort)
m_value
) | (((int)
m_value
) << 16));
87
return Number.FormatInt32(
m_value
, null, NumberFormatInfo.CurrentInfo);
93
return Number.FormatInt32(
m_value
, null, NumberFormatInfo.GetInstance(provider));
110
if (
m_value
<0 && format!=null && format.Length>0 && (format[0]=='X' || format[0]=='x')) {
111
uint temp = (uint)(
m_value
& 0x0000FFFF);
114
return Number.FormatInt32(
m_value
, format, info);
203
return Convert.ToBoolean(
m_value
);
208
return Convert.ToChar(
m_value
);
213
return Convert.ToSByte(
m_value
);
218
return Convert.ToByte(
m_value
);
223
return
m_value
;
228
return Convert.ToUInt16(
m_value
);
233
return Convert.ToInt32(
m_value
);
238
return Convert.ToUInt32(
m_value
);
243
return Convert.ToInt64(
m_value
);
248
return Convert.ToUInt64(
m_value
);
253
return Convert.ToSingle(
m_value
);
258
return Convert.ToDouble(
m_value
);
263
return Convert.ToDecimal(
m_value
);