ByteConverter.hexEncode

Takes an array and converts each byte to its hex representation.

  1. mstring hexEncode(Const!(void)[] input_)
    struct ByteConverter
    static
    mstring
    hexEncode
    (
    Const!(void)[] input_
    )
  2. mstring hexEncode(Const!(void)[] input_, mstring output)

Parameters

input_ Const!(void)[]

the array of bytes to represent

Return Value

Type: mstring

A newed char[] containing the hex digits representing the input

Meta