(this BinaryReader binRdr)
| 34 | } |
| 35 | |
| 36 | public static Int16 ReadInt16BE(this BinaryReader binRdr) { |
| 37 | return BitConverter.ToInt16(binRdr.ReadBytes(sizeof(Int16)).Reverse(), 0); |
| 38 | } |
| 39 | |
| 40 | public static UInt32 ReadUInt32BE(this BinaryReader binRdr) { |
| 41 | return BitConverter.ToUInt32(binRdr.ReadBytes(sizeof(UInt32)).Reverse(), 0); |