Question

Can anyone help me how to convert string value to dword hex for example:

string i = "1";
uint32 m = ....
m.toString(X8);

so that: m = 00000001

Was it helpful?

Solution

string i = "1";
UInt32 m;
UInt32.TryParse(i, out m);
string result = m.ToString("X8");

or

string result = Convert.ToUInt32("1").ToString("X8");
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top