hex to string

code: #csharp
  1. static void Main()
  2. {
  3.     byte[] data = FromHex("47-61-74-65-77-61-79-53-65-72-76-65-72");
  4.     string s = Encoding.ASCII.GetString(data);
  5. }
  6. public static byte[] FromHex(string hex)
  7. {
  8.     hex = hex.Replace("-", "");
  9.     byte[] raw = new byte[hex.Length / 2];
  10.     for (int i = 0; i < raw.Length; i++)
  11.     {
  12.         raw[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16);
  13.     }
  14.     return raw;
  15. }
Поделиться:

Похожие статьи:

теги: string, c#, hex