Hello,
I need to check for a string located inside a packet that I receive as byte array.If I use BitConverter.ToString() ,I get the bytes as String with dashes(example 00-50-25-40-A5-FF). I tried most function I found after a quick googling,but most of them have input parameter type string and if I call them with the string with dashes,It throws an exception.
I need a function that turns Hex(as string or as byte) into the string that represents the hexadecimal value(example 0x31 = 1). If the input parameter is string,the function should recognize dashes(example "47-61-74-65-77-61-79-53-65-72-76-65-72") ,because BitConverter doesn't convert correctly.
Thanks.