(this BinaryReader binRdr)
| 42 | } |
| 43 | |
| 44 | public static Int32 ReadInt32BE(this BinaryReader binRdr) { |
| 45 | return BitConverter.ToInt32(binRdr.ReadBytes(sizeof(Int32)).Reverse(), 0); |
| 46 | } |
| 47 | |
| 48 | public static string RandomString(int length) { |
| 49 | const string chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; |