()
| 61 | private const uint Prime5 = 374761393U; |
| 62 | |
| 63 | private static uint GenerateGlobalSeed() |
| 64 | { |
| 65 | using RandomNumberGenerator randomNumberGenerator = RandomNumberGenerator.Create(); |
| 66 | byte[] data = new byte[sizeof(uint)]; |
| 67 | randomNumberGenerator.GetBytes(data); |
| 68 | return BitConverter.ToUInt32(data, 0); |
| 69 | } |
| 70 | |
| 71 | public static int Combine<T1, T2>(T1 value1, T2 value2) |
| 72 | { |
nothing calls this directly
no outgoing calls
no test coverage detected