Published
- 1 min read
hex string to int c#
The solution for this is noted below
hex string to int c#
Solution
string hex = "142CBD";
// this returns 1322173
int intValue = int.Parse(hex, System.Globalization.NumberStyles.HexNumber);
Try other methods by searching on the site. That is if this doesn’t work