ReadLeUInt64() public static méthode

public static ReadLeUInt64 ( byte img, long off ) : ulong
img byte
off long
Résultat ulong
Exemple #1
0
        public ulong ReadLeUInt64()
        {
            ulong u = MemoryArea.ReadLeUInt64(bytes, off);

            off += 8;
            return(u);
        }
Exemple #2
0
 public long PeekLeInt64(uint offset)
 {
     return((long)MemoryArea.ReadLeUInt64(bytes, off));
 }
Exemple #3
0
 public ulong PeekLeUInt64(int offset)
 {
     return(MemoryArea.ReadLeUInt64(bytes, off + offset));
 }