91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中BitConverter.ToUInt16()和BitConverter.ToString()怎么用

發布時間:2021-09-23 11:42:29 來源:億速云 閱讀:156 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“C#中BitConverter.ToUInt16()和BitConverter.ToString()怎么用”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“C#中BitConverter.ToUInt16()和BitConverter.ToString()怎么用”這篇文章吧。

第一:排列格式。如:定義一個常量變量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();    }  }}

以上是“C#中BitConverter.ToUInt16()和BitConverter.ToString()怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鲁山县| 台东县| 盐城市| 鹿泉市| 东港市| 公主岭市| 凤阳县| 嫩江县| 红桥区| 自治县| 曲松县| 闸北区| 九龙坡区| 盐山县| 河源市| 塘沽区| 溆浦县| 和静县| 扎赉特旗| 公安县| 柘城县| 海丰县| 定结县| 仁怀市| 乐山市| 雷波县| 龙川县| 太白县| 信宜市| 洪泽县| 大同市| 甘泉县| 隆昌县| 张家口市| 伊通| 湘阴县| 双鸭山市| 吉木萨尔县| 枝江市| 东乡| 盐津县|