C#如何把数字转为16进制字节
2013-10-29
展开全部
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
byte[] b = {12,10,1,17};
for (int i = 0; i < b.Length; i++)
{
string a =Convert.ToString(b[i], 16);
Console.WriteLine("O"+a);
}
}
}
}
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
byte[] b = {12,10,1,17};
for (int i = 0; i < b.Length; i++)
{
string a =Convert.ToString(b[i], 16);
Console.WriteLine("O"+a);
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询