How do I generate a random integer in C#?
You could use Jon Skeet's StaticRandom method inside the MiscUtil class library that he built for a pseudo-random number.
using MiscUtil; ... for (int i = 0; i < 100; Console.WriteLine(StaticRandom.Next());