MCPcopy Create free account
hub / github.com/CCob/BOF.NET / ReadUInt32BE

Method ReadUInt32BE

managed/BOFNET/Utils.cs:40–42  ·  view source on GitHub ↗
(this BinaryReader binRdr)

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 1

ReverseMethod · 0.80

Tested by

no test coverage detected