C#中的十六进制操作[重复]
Posted
技术标签:
【中文标题】C#中的十六进制操作[重复]【英文标题】:Hex operations in C# [duplicate] 【发布时间】:2010-09-16 11:21:56 【问题描述】:关于在 c# 中解析/转换/操作十六进制值的任何提示?
特别是我想将十进制整数转换为十六进制,然后输出为字符串...
【问题讨论】:
【参考方案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#?
【讨论】:
以上是关于C#中的十六进制操作[重复]的主要内容,如果未能解决你的问题,请参考以下文章