C#中的十六进制操作

时间:2008-10-10 08:38:33

标签: c# hex

在c#中解析/转换/操作十六进制值的任何提示?

特别是我想将十进制int转换为十六进制,然后输出为字符串...

2 个答案:

答案 0 :(得分:1)

Int32 decValue = 42;
string hexValue = decValue.ToString("X");

Int32 decValue2 = Int32.Parse(hexValue, System.Globalization.NumberStyles.HexNumber);

见这篇文章:

How to convert numbers between hexadecimal and decimal in C#?

答案 1 :(得分:0)