how to convert 0x8080 to 8080 int? [closed]

You can convert a number to hex like this: 0x8080.ToString("x6")
The 6 is the number of decimal places.

See the documentation for more detail.

Leave a Comment