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

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