Beispiel #1
0
 public bool TryReadBeUInt32(out uint ui32)
 {
     if (!ByteMemoryArea.TryReadBeUInt32(this.bytes, (uint)off, out ui32))
     {
         return(false);
     }
     off += 4;
     return(true);
 }
Beispiel #2
0
 public bool TryPeekBeUInt32(int offset, out uint value)
 {
     return(ByteMemoryArea.TryReadBeUInt32(bytes, offset + off, out value));
 }