程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#中Byte轉換相關的函數

C#中Byte轉換相關的函數

編輯:關於C語言
1、將一個對象轉換為byte對象
? 1 2 3 4 5 6 7 8 9 10 11 12 13 public static byte GetByte(object o) { byte retInt = 0; if (o != null) { byte tmp; if (byte.TryParse(o.ToString().Trim(), out tmp)) { retInt = tmp; } } return retInt; }

2、將一個十六進制字符串轉換為byte對象,字符串以0x開頭

? 1 2 3 4 5 6 7 8 9 10 11 public static byte GetByteFormHex(string hexValue) { try { return Convert.ToByte(hexValue, 16); } catch { return 0; } }

3、將單個字符轉換為byte對象

? 1 2 3 4 public static byte GetByteFormSingleString(string value) { return GetByteFormChar(Convert.ToChar(value)); }

4、將一個字符串轉換為byte數組

? 1 2 3 4 public static byte[] GetBytes(string values) { return System.Text.Encoding.Default.GetBytes(values); }

以上內容是小編給大家介紹的C#中Byte轉換相關的函數,希望對大家有所幫助!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved