TryReadBeInt32() public static méthode

public static TryReadBeInt32 ( byte abImage, long off, int &value ) : bool
abImage byte
off long
value int
Résultat bool
Exemple #1
0
 public bool TryReadBeInt32(out int i32)
 {
     if (!MemoryArea.TryReadBeInt32(this.bytes, (uint)off, out i32))
     {
         return(false);
     }
     off += 4;
     return(true);
 }