The following table shows the predefined implicit numeric conversions. Implicit conversions might occur in many situations, including method invoking and assignment statements.
From | To |
---|---|
sbyte | short, int, long, float, double, or decimal |
byte | short, ushort, int, uint, long, ulong, float, double, or decimal |
short | int, long, float, double, or decimal |
ushort | int, uint, long, ulong, float, double, or decimal |
int | long, float, double, or decimal |
uint | long, ulong, float, double, or decimal |
long | float, double, or decimal |
char | ushort, int, uint, long, ulong, float, double, or decimal |
float | double |
ulong | float, double, or decimal |
For more information on implicit conversion, see the language reference, §6.1.
For more information on constant expressions, see the language reference, §7.15.
Integral Types Table | Built-in Types Table | Explicit Numeric Conversions Table