c#常用數值範圍匯總
阿新 • • 發佈:2017-06-27
pan style eight 常用 ati true float height order
short.MaxValue | 32767 |
short.MinValue | -32768 |
int.MaxValue | 2147483647 |
int.MinValue | -2147483648 |
long.MaxValue | 9223372036854775807 |
long.MinValue | -9223372036854775808 |
float.Epsilon | 1.401298E-45 |
float.MaxValue | 3.402823E+38 |
float.MinValue | -3.402823E+38 |
float.NaN | 非數字 |
float.NegativeInfinity | 負無窮大 |
float.PositiveInfinity | 正無窮大 |
double.Epsilon | 4.94065645841247E-324 |
double.MaxValue | 1.79769313486232E+308 |
double.MinValue | -1.79769313486232E+308 |
double.NaN | 非數字 |
double.NegativeInfinity | 負無窮大 |
double.PositiveInfinity | 正無窮大 |
bool.FalseString | False |
bool.TrueString | True |
char.MaxValue | "" |
char.MinValue |
"" |
byte.MaxValue | 255 |
byte.MinValue | 0 |
ushort.MaxValue | 65535 |
ushort.MinValue | 0 |
uint.MaxValue | 4294967295 |
uint.MinValue | 0 |
ulong.MaxValue | 18446744073709551615 |
ulong.MinValue | 0 |
c#常用數值範圍匯總