Skip to content

Instantly share code, notes, and snippets.

# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
class ByteUtil
{
/// <summary>
/// converts bytedata in a byte array to a hexadecimal string
/// </summary>
public static string Byte2String(byte[] b, int offset, int len, string separator)
{
StringBuilder sb = new StringBuilder();