Ejemplo n.º 1
0
        public static string ReadHex64(this BinaryReader br)
        {
            ulong l = br.ReadUInt64();

            return(Miscellaneous.LongToHex(l));
        }
Ejemplo n.º 2
0
 public static string ToHex(this byte[] buffer)
 {
     return(Miscellaneous.BytesToHex(buffer));
 }