标签:on br return c# it 数组 c private 转换
//
//将int进制转换
//
private byte hex(int myHex)
{
byte[] a = BitConverter.GetBytes(myHex);
return a[0];//这里返回的数组,a[0]表示int中的低两个字符
}
标签:on br return c# it 数组 c private 转换
原文地址:http://www.cnblogs.com/fx427103/p/4158115.html