Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
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
string i = "1"; UInt32 m; UInt32.TryParse(i, out m); string result = m.ToString("X8");
或者
string result = Convert.ToUInt32("1").ToString("X8");