TryReadBeInt64() 공개 정적인 메소드

public static TryReadBeInt64 ( byte image, long off, long &value ) : bool
image byte
off long
value long
리턴 bool
예제 #1
0
 public bool TryReadBeInt64(out long value)
 {
     if (!MemoryArea.TryReadBeInt64(this.bytes, off, out value))
     {
         return(false);
     }
     off += 8;
     return(true);
 }