Skip to content

Instantly share code, notes, and snippets.

@casparkleijne
Last active January 17, 2017 10:29
Show Gist options
  • Save casparkleijne/83300f027e7c8c3da95c45bc16d4eb77 to your computer and use it in GitHub Desktop.
Save casparkleijne/83300f027e7c8c3da95c45bc16d4eb77 to your computer and use it in GitHub Desktop.
static readonly Random rand = new Random(DateTime.Now.Millisecond);
Stack<TimeSpan> times = new Stack<TimeSpan>(
Enumerable
.Range(0, 30) // <-- intervals
.Select(i => new TimeSpan(0, 0, rand.Next(5))) //<-- frequencies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment