(byte[] buffer, long offset, long size)
| 348 | } |
| 349 | |
| 350 | public static byte[] ReadBytes(byte[] buffer, long offset, long size) |
| 351 | { |
| 352 | byte[] result = new byte[size]; |
| 353 | Array.Copy(buffer, offset, result, 0, (int)size); |
| 354 | return result; |
| 355 | } |
| 356 | |
| 357 | public static string ReadString(byte[] buffer, long offset, long size) |
| 358 | { |