Encode a byte array in hexadecimal
public static string ToHex( this byte[] b )
<ExtensionAttribute> Public Shared Function ToHex ( b As Byte() ) As String
byte[] b = { 0x00, 0x01, 0x02, 0x03 }; string s = b.ToHex(); // 00010203
[Contents] [Index]