C# byte數組常用擴展是我們編程中經常會碰到的一些實用性很強的操作,那麼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);
}