我有一串十六进制数字,比如说
"010104000202000AC80627061202"
我希望我的输出为
"01 01 04 00 02 02 00 0A C8 06 27 06 12 02"
我可以使用 for 循环,但有什么优化的方法吗?
我目前正在做的是:
int length = line.Length/2; // Store the length of String
string outputstr = String.Empty;
for (int count = 0; count < length; count++)
{
outputstr += line.Substring(0, 2) + " "; //Get First two bytes and add space
line = line.Substring(2); // Remove those two bytes
}