0

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

4

1 回答 1

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

或者

string result = Convert.ToUInt32("1").ToString("X8");
于 2011-08-31T07:50:19.517 回答