Esempio n. 1
0
 public static uint ReadUInt32(IList <byte> buffer, uint offset)
 => IoUtil.ReadUInt(buffer, offset, 4);
Esempio n. 2
0
 public static ushort ReadUInt16(IList <byte> buffer, uint offset)
 => (ushort)IoUtil.ReadUInt(buffer, offset, 2);