I'm kindof a C# noob and I want to create a byte[] from a String[].
Here is an example:
string[] macString = new string[]{"AA","11","02","BB","A5","AA"};
And I want the following output:
byte[] mac = new byte[] { 0xAA, 0x11, 0x02, 0xBB, 0xA5, 0xAA };
Can somebody help me with this?