# hex

# byte array to hex representation

represents the given byte array as hex.

IEnumerable<char> hex(byte[] byteArray)
hex(new byte[] { 255, 200 })
/*
"ffc8"
*/
Last Updated: 7/16/2020, 11:00:33 PM