I'm looking for some succinct, modern C# code to generate a random date between Jan 1 1995 and the current date.
I'm thinking some solution that utilizes Enumerable.Range somehow may make this more succinct.
|
|
For better performance if this will be called repeatedly, create the |
|||||||||||||||||
|
|
This is in slight response to Joel's comment about making a slighly more optimized version. Instead of returning a random date directly, why not return a generator function which can be called repeatedly to create a random date.
|
|||||||
|
|
Start with a fixed date object (Jan 1, 1995), and add a random number of days with AddDays (obviusly, pay attention not surpassing the current date). |
|||
|
|
Well, if you gonna present alternate optimization, we can also go for an iterator:
you could use it like this:
|
|||||
|