(byte[] buffer, long offset)
| 272 | } |
| 273 | |
| 274 | public static int ReadInt32(byte[] buffer, long offset) |
| 275 | { |
| 276 | return (buffer[offset + 0] << 0)| |
| 277 | (buffer[offset + 1] << 8)| |
| 278 | (buffer[offset + 2] << 16)| |
| 279 | (buffer[offset + 3] << 24); |
| 280 | } |
| 281 | |
| 282 | public static uint ReadUInt32(byte[] buffer, long offset) |
| 283 | { |
no outgoing calls