I'm trying to convert a byte[] in a string but need to use the HEX column of the ASCII table.
What i have:
*byte[] byteArray = new byte [] {41,56,41};
string result = Encoding.ASCII.GetString(byteArray, 0 ,byteArray.Length);*
Result expected:
AVA
What i got
)8)
If you could help me with this would be perfect. Thanks.
If I understand correctly, what you want is to write the input values in hex as such: