Thread
:
decimal to hexadecimal
View Single Post
•
•
Join Date: Nov 2008
Posts: 44
Reputation:
Solved Threads: 4
hieuuk
Offline
Light Poster
Re: decimal to hexadecimal
0
#
4
Dec 28th, 2008
this also does the trick to convert from hex -> number:
int.Parse(Hex, System.Globalization.NumberStyles.HexNumber);
for bigger value
long.Parse(Hex, System.Globalization.NumberStyles.HexNumber);
other way round
string hex = Value.ToString("x");
.Net Developer - 3D Game Designer
My Portfolio/Blog:
http://www.hieu.co.uk
hieuuk
View Public Profile
Find all posts by hieuuk