Can anyone please suggest the C# equivalent of Hex.decodeHex()
which is in Java.
Below the example in java:
Key = "7777777777777777777777777777777777777777777777777777777777777777";
byte[] KeyInBytes = Hex.decodeHex(Key.toCharArray());
I am looking for the c# equivalent of this
Any help here is highly appreciated.