internal static string ToBinHexString(byte[] inArray) { if (inArray == null) { throw new ArgumentNullException("inArray"); } return(BinHexEncoder.Encode(inArray, 0, inArray.Length)); }
public virtual Task WriteBinHexAsync(byte[] buffer, int index, int count) { return(BinHexEncoder.EncodeAsync(buffer, index, count, this)); }
// Encodes the specified binary bytes as bin hex and writes out the resulting text. public virtual void WriteBinHex(byte[] buffer, int index, int count) { BinHexEncoder.Encode(buffer, index, count, this); }
internal static string ToBinHexString(byte[] inArray) { return(BinHexEncoder.EncodeToBinHex(inArray, 0, inArray.Length)); }