C#中BitConverter.ToUInt16()和BitConverter.ToString()的简单使用
程序员文章站
2023-11-18 17:41:52
下面是msdn中的一个例子,在我刚看到这里例子时,该例子有三点是我可以学到的。第一:排列格式。如:定义一个常量变量const string a="{0,11}{1,10},{2,7}"; 这样一个格式...
下面是msdn中的一个例子,在我刚看到这里例子时,该例子有三点是我可以学到的。
第一:排列格式。如:定义一个常量变量const string a="{0,11}{1,10},{2,7}"; 这样一个格式用来排列三个变量的位置,第一个变量占5个位置,第二个变量占8个位置,第三个变量占10个位置。中英文都算一个位置。比如在控制台上输出 console.writeline(a,"以后想找什么当另外一半","找个又帅又有车的","那买副象棋吧"); 下面是这个测试的截图
如果,定义所占的位置少于要输入的字符,会自动增加,而不是截断。
第二:bitconverter.touint16()的用法,是把两个字节转换为无符号整数,如:205 56 这两个字节的16进制是 cd 38 那么转为无符号整数 应该倒过来排 即 38cd 这个数转为无符号十进制整数就是 14541
第三:bitconverter.tostring()的用法,这个就是把字节或字节数组转换为十六进制或十六进制的字符串形式,中间用“-”连接
下面是这个例子的完整代码:
using system; using system.collections.generic; using system.linq; using system.text; namespace bitconverter数据转换 { class program { //排列格式,第一个变量占五个位置,第二个变量占17个位置,第三个变量占10个位置 const string formatter = "{0,5}{1,17}{2,10}"; // convert two byte array elements to a ushort and display it. public static void batouint16(byte[] bytes, int index) { //bitconverter用于基础数据跟字节数组相互转换 //bitconverter.touint16()方法将字节数组指定位置起的两个字节转换为无符号整数 ushort value = bitconverter.touint16(bytes, index); //bitconverter.tostring()字节数组转换为十六进制的字符串形式 console.writeline(formatter, index, bitconverter.tostring(bytes, index, 2), value); } static void main(string[] args) { byte[] bytearray = { 15, 0, 0, 255, 3, 16, 39, 255, 255, 127 }; console.writeline( "this example of the bitconverter.touint16( byte[ ], " + "int ) \nmethod generates the following output. it " + "converts elements \nof a byte array to ushort values.\n"); console.writeline("initial byte array"); console.writeline("------------------"); console.writeline(bitconverter.tostring(bytearray)); console.writeline(); console.writeline(formatter, "index", "array elements", "ushort"); console.writeline(formatter, "-----", "--------------", "------"); // convert byte array elements to ushort values. batouint16(bytearray, 1); batouint16(bytearray, 0); batouint16(bytearray, 3); batouint16(bytearray, 5); batouint16(bytearray, 8); batouint16(bytearray, 7); console.readkey(); } } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: PHP编程开发怎么提高编程效率 提高PHP编程技术
下一篇: C#实现俄罗斯方块基本功能