I convert the number:
int num = 1155; string end = Convert.ToString(num , 16).TrimStart('0')); The result is 483 in the end , and you need to get 0 483
I convert the number:
int num = 1155; string end = Convert.ToString(num , 16).TrimStart('0')); The result is 483 in the end , and you need to get 0 483
Source: https://ru.stackoverflow.com/questions/578601/
All Articles