I need to convert and int to hex string.
when converting 1400 => 578 using ToString("X") or ToString("X2") but I need it like 0578.
Can anyone provide me the IFormatter to ensure that the string has 4 chars long?
|
I need to convert and int to hex string. when converting Can anyone provide me the IFormatter to ensure that the string has 4 chars long? |
||||
|
|
|
Use The 4 means that the string will be 4 digits long. Reference: The Hexadecimal ("X") Format Specifier on MSDN. |
|||
|
|
|
|
|||
|
|