コード例 #1
0
 public uint ReadUInt()
 {
     byte[] buffer = new byte[4];
     memory.Read(buffer, 0, 4);
     return(ByteUtils.ToUInt(buffer, 0));
 }