Пример #1
0
 public bool TryReadLeUInt32(out uint ui32)
 {
     if (!ByteMemoryArea.TryReadLeUInt32(this.bytes, (uint)off, out ui32))
     {
         return(false);
     }
     off += 4;
     return(true);
 }
Пример #2
0
 public bool TryPeekLeUInt32(int offset, out uint value)
 {
     return(ByteMemoryArea.TryReadLeUInt32(bytes, offset + off, out value));
 }