Converting Hex string to Int in C#
For a hex literal that’s not prefixed you can quite easily convert it using int.Parse in C#: But as you’ve probably noticed, most hex literals are prefixed with 0x (e.g. “0x142CBD”) which would throw a FormatException if you try to parse it using the above code. In order to parse a 0x prefixed hex literal …