public UInt64 XorShift() { UInt64 sum = 0; for (Int32 i = 0; i < Iterations; i++) { sum = unchecked (sum + _xorShift.NextUInt64()); } return(sum); }