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.
たとえば、文字列値をdword hexに変換する方法を教えてもらえますか?
string i = "1"; uint32 m = .... m.toString(X8);
したがって:m = 00000001
string i = "1"; UInt32 m; UInt32.TryParse(i, out m); string result = m.ToString("X8");
また
string result = Convert.ToUInt32("1").ToString("X8");