ByteConverter.hexEncode

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

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

Parameters

input_ Const!(void)[]

the array of bytes to represent

output mstring

the buffer into which the results will be written

Return Value

Type: mstring

A slice of output containing the hex digits representing the input

Meta