中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

C#下byte數組常用擴展淺析

發布時間:2021-09-17 16:28:55 來源:億速云 閱讀:167 作者:chen 欄目:編程語言

本篇內容介紹了“C#下byte數組常用擴展淺析”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

C# byte數組常用擴展應用一:轉換為十六進制字符串

public static string ToHex(this byte b)  {  return b.ToString("X2");  }      public static string ToHex(this IEnumerable<byte> bytes)  {  var sb = new StringBuilder();  foreach (byte b in bytes)   sb.Append(b.ToString("X2"));  return sb.ToString();   }

第二個擴展返回的十六進制字符串是連著的,一些情況下為了閱讀方便會用一個空格分開,處理比較簡單,不再給出示例。

C# byte數組常用擴展應用二:轉換為Base64字符串

 public static string ToBase64String(byte[] bytes)   {  return Convert.ToBase64String(bytes);   }

C# byte數組常用擴展應用三:轉換為基礎數據類型

 public static int ToInt(this byte[] value, int startIndex)   {  return BitConverter.ToInt32(value, startIndex);   }   public static long ToInt64(this byte[] value, int startIndex)   {  return BitConverter.ToInt64(value, startIndex);   }

BitConverter類還有很多方法(ToSingle、ToDouble、ToChar...),可以如上進行擴展。

C# byte數組常用擴展應用四:轉換為指定編碼的字符串

 public static string Decode(this byte[] data, Encoding encoding)   {  return encoding.GetString(data);   }

C# byte數組常用擴展應用五:Hash

//使用指定算法Hash  public static byte[] Hash(this byte[] data, string hashName)  {  HashAlgorithm algorithm;  if (string.IsNullOrEmpty(hashName)) algorithm = HashAlgorithm.Create();  else algorithm = HashAlgorithm.Create(hashName);  return algorithm.ComputeHash(data);  }   //使用默認算法Hash   public static byte[] Hash(this byte[] data)   {  return Hash(data, null);  }

C# byte數組常用擴展應用六:位運算

//index從0開始  //獲取取第index是否為1  public static bool GetBit(this byte b, int index)  {  return (b & (1 < 0;  }  //將第index位設為1  public static byte SetBit(this byte b, int index)  {  b |= (byte)(1 << index);  return b;   }   //將第index位設為0   public static byte ClearBit(this byte b, int index)  {  b &= (byte)((1 << 8) - 1 - (1 << index));  return b;   }   //將第index位取反   public static byte ReverseBit(this byte b, int index)   {  b ^= (byte)(1 << index);    return b;   }

C# byte數組常用擴展應用七:保存為文件

 public static void Save(this byte[] data, string path)   {  File.WriteAllBytes(path, data);   }

C# byte數組常用擴展應用八:轉換為內存流

 public static MemoryStream ToMemoryStream(this byte[] data)   {  return new MemoryStream(data);   }

“C#下byte數組常用擴展淺析”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

宝丰县| 丽水市| 韶山市| 乌兰察布市| 崇左市| 贵阳市| 万宁市| 咸宁市| 邵武市| 含山县| 股票| 贡嘎县| 师宗县| 垫江县| 即墨市| 临汾市| 从化市| 柏乡县| 资源县| 长阳| 洛宁县| 达州市| 阿克陶县| 怀宁县| 绵竹市| 玉溪市| 景宁| 朔州市| 塘沽区| 新竹市| 巩留县| 吕梁市| 马公市| 个旧市| 昭平县| 新泰市| 五常市| 兰州市| 安徽省| 台中县| 遂宁市|