0
如何將一個十進制數轉換爲一個字節格式的十六進制數。將十進制數轉換爲十六進制(一個字節的格式)
e.g if decimal = 15 , Output = 0x0F and Not 0xF ,
if decimal = 240 , Output = 0xF0
Console.WriteLine("{0:x}", i) solutions gives 0xF not 0x0F.
在C#中有ToINt16/32/64但沒有ToINt8?