26 references to m_value
mscorlib (26)
system\sbyte.cs (26)
58
return
m_value
- ((SByte)obj).
m_value
;
62
return
m_value
- value;
70
return
m_value
== ((SByte)obj).
m_value
;
76
return
m_value
== obj;
81
return ((int)
m_value
^ (int)
m_value
<< 8);
89
return Number.FormatInt32(
m_value
, null, NumberFormatInfo.CurrentInfo);
95
return Number.FormatInt32(
m_value
, null, NumberFormatInfo.GetInstance(provider));
112
if (
m_value
<0 && format!=null && format.Length>0 && (format[0]=='X' || format[0]=='x')) {
113
uint temp = (uint)(
m_value
& 0x000000FF);
116
return Number.FormatInt32(
m_value
, format, info);
211
return Convert.ToBoolean(
m_value
);
216
return Convert.ToChar(
m_value
);
221
return
m_value
;
226
return Convert.ToByte(
m_value
);
231
return Convert.ToInt16(
m_value
);
236
return Convert.ToUInt16(
m_value
);
241
return
m_value
;
246
return Convert.ToUInt32(
m_value
);
251
return Convert.ToInt64(
m_value
);
256
return Convert.ToUInt64(
m_value
);
261
return Convert.ToSingle(
m_value
);
266
return Convert.ToDouble(
m_value
);
271
return Convert.ToDecimal(
m_value
);