(this BinaryReader binRdr)
| 38 | } |
| 39 | |
| 40 | public static UInt32 ReadUInt32BE(this BinaryReader binRdr) { |
| 41 | return BitConverter.ToUInt32(binRdr.ReadBytes(sizeof(UInt32)).Reverse(), 0); |
| 42 | } |
| 43 | |
| 44 | public static Int32 ReadInt32BE(this BinaryReader binRdr) { |
| 45 | return BitConverter.ToInt32(binRdr.ReadBytes(sizeof(Int32)).Reverse(), 0); |