Example #1
0
 public static void WriteInt32(IList <byte> buffer, uint data, ref int offset)
 => IoUtil.WriteInt(buffer, data, ref offset, 4);
Example #2
0
 public static void WriteInt16(IList <byte> buffer, ref int offset, ushort data)
 => IoUtil.WriteInt(buffer, data, ref offset, 2);