LumiSoft.Net.Core.ToHex C# (CSharp) Method

ToHex() public static method

Convert byte to hex data.
public static ToHex ( byte byteValue ) : byte[]
byteValue byte Byte to convert.
return byte[]
        public static byte[] ToHex(byte byteValue)
        {
            return ToHex(new byte[]{byteValue});
        }