新聞中心
C# byte數(shù)組常用擴(kuò)展是我們編程中經(jīng)常會(huì)碰到的一些實(shí)用性很強(qiáng)的操作,那么C# byte數(shù)組常用擴(kuò)展都有哪些呢?下面將列出并用實(shí)例演示常用八種情況。

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、網(wǎng)站空間、營銷軟件、網(wǎng)站建設(shè)、盤山網(wǎng)站維護(hù)、網(wǎng)站推廣。
C# byte數(shù)組常用擴(kuò)展應(yīng)用一:轉(zhuǎn)換為十六進(jìn)制字符串
- public static string ToHex(this byte b)
- {
- return b.ToString("X2");
- }
- public static string ToHex(this IEnumerable
bytes) - {
- var sb = new StringBuilder();
- foreach (byte b in bytes)
- sb.Append(b.ToString("X2"));
- return sb.ToString();
- }
第二個(gè)擴(kuò)展返回的十六進(jìn)制字符串是連著的,一些情況下為了閱讀方便會(huì)用一個(gè)空格分開,處理比較簡單,不再給出示例。
C# byte數(shù)組常用擴(kuò)展應(yīng)用二:轉(zhuǎn)換為Base64字符串
- public static string ToBase64String(byte[] bytes)
- {
- return Convert.ToBase64String(bytes);
- }
C# byte數(shù)組常用擴(kuò)展應(yīng)用三:轉(zhuǎn)換為基礎(chǔ)數(shù)據(jù)類型
- 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...),可以如上進(jìn)行擴(kuò)展。
C# byte數(shù)組常用擴(kuò)展應(yīng)用四:轉(zhuǎn)換為指定編碼的字符串
- public static string Decode(this byte[] data, Encoding encoding)
- {
- return encoding.GetString(data);
- }
C# byte數(shù)組常用擴(kuò)展應(yīng)用五: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);
- }
- //使用默認(rèn)算法Hash
- public static byte[] Hash(this byte[] data)
- {
- return Hash(data, null);
- }
C# byte數(shù)組常用擴(kuò)展應(yīng)用六:位運(yùn)算
- //index從0開始
- //獲取取第index是否為1
- public static bool GetBit(this byte b, int index)
- {
- return (b & (1 << index)) > 0;
- }
- //將第index位設(shè)為1
- public static byte SetBit(this byte b, int index)
- {
- b |= (byte)(1 << index);
- return b;
- }
- //將第index位設(shè)為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數(shù)組常用擴(kuò)展應(yīng)用七:保存為文件
- public static void Save(this byte[] data, string path)
- {
- File.WriteAllBytes(path, data);
- }
C# byte數(shù)組常用擴(kuò)展應(yīng)用八:轉(zhuǎn)換為內(nèi)存流
- public static MemoryStream ToMemoryStream(this byte[] data)
- {
- return new MemoryStream(data);
- }
C# byte數(shù)組常用擴(kuò)展的八種情況就向你介紹到這里,希望對(duì)你了解和學(xué)習(xí)C# byte數(shù)組常用擴(kuò)展有所幫助。
網(wǎng)頁名稱:C#byte數(shù)組常用擴(kuò)展淺析
文章源于:http://www.fisionsoft.com.cn/article/cdosdpd.html


咨詢
建站咨詢
