[沒有蠢問題] Wireshark Packet 轉換成 ByteArray

[沒有蠢問題] Wireshark Packet 轉換成 ByteArray

前言

之前要將Wireshark封包內容轉換成 ByteArray都是手工去組字串
今天來研究看看有沒有更好的方法

Wireshark

取得純文字的HexString

解法

How can I convert a hex string to a byte array?
有看到一個LINQ語法

public static byte[] StringToByteArray(string hex) {
    return Enumerable.Range(0, hex.Length)
                     .Where(x => x % 2 == 0)
                     .Select(x => Convert.ToByte(hex.Substring(x, 2), 16))
                     .ToArray();
}

結語

可以擺脫手工key ByteArray啦
今天就先這樣囉 下次聊 Bye 

如果內容有誤請多鞭策謝謝