Numeric to numeric conversion

Numeric to numeric conversion

@csharp_1001_notes
short s = short.MaxValue / 5;
Console.WriteLine((byte)s);
// 11001|10011001
//       10011001

int i = int.MaxValue / 5;
Console.WriteLine((short)i);
// 1100110011001|1001100110011001
//               1001100110011001

Report Page