vote up 5 vote down star
2

I'm looking for some succinct C# 3 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.

flag

5 Answers

vote up 19 vote down check
    DateTime RandomDay()
    {
        DateTime start = new DateTime(1995, 1, 1);
        Random gen = new Random();

        int range = ((TimeSpan)(DateTime.Today - start)).Days;           
        return start.AddDays(gen.Next(range));
    }

For better performance if this will be called repeatedly, create the start and gen (and maybe even range) variables outside of the function.

link|flag
Thanks, Joel! That's what I was looking for. – Judah Himango Oct 12 '08 at 0:17
Random is only pseudo-random. If you need truly random, try using RNGCryptoServiceProvider from the System.Security.Cryptography namespace. – tvanfosson Oct 12 '08 at 0:37
Thanks tvanfosson. Pseudo-random is sufficient for this problem. – Judah Himango Oct 12 '08 at 1:26
Actually, Random isn't even particularly pseudo-random unless you keep the instance around for a while and keep getting values out of it. – David Mitchell Oct 15 '08 at 14:23
1  
Yep, that works for me; my real-world code will have the Random instance outside the method itself. – Judah Himango Jun 1 at 22:03
show 2 more comments
vote up 0 vote down
// Chosen by a random dice roll. Guaranteed to be random.
return DateTime.Parse("10/07/2001");

That's the problem with random numbers, you can never be sure.

link|flag
gave it an upvote for making me laugh – Kevin Oct 12 '08 at 4:09
xkcd.com/221 content3.clipmarks.com/image_cache/xofxof/… Funny things are funny, but probably better served as a comment to the original post so as not to add noise to serious answers ;p – ICR Oct 12 '08 at 11:32
Ah, touché. – tsilb Oct 28 '08 at 22:45
vote up 1 vote down

Well, if you gonna present alternate optimization, we can also go for an iterator:

 static IEnumerable<DateTime> RandomDay()
 {
    DateTime start = new DateTime(1995, 1, 1);
    Random gen = new Random();
    int range = ((TimeSpan)(DateTime.Today - start)).Days;
    while (true)
    	yield return  start.AddDays(gen.Next(range));        
}

you could use it like this:

int i=0;
foreach(DateTime dt in RandomDay())
{
    Console.WriteLine(dt);
    if (++i == 10)
    	break;
}
link|flag
One thing to consider between an iterator vs. a generator function is that the iterator solution will produce an IDisposable value. This forces the caller to dispose or pay the price of having a finalizer live in the GC. The generator needs no disposing – JaredPar Oct 12 '08 at 21:05
@JaredPar, that's not quite right. Just because a type implements IDisposable does not mean it is finalizable. – Drew Noakes Oct 23 '08 at 8:10
vote up 0 vote down

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.



        Func<DateTime> RandomDayFunc()
        {
            DateTime start = new DateTime(1995, 1, 1); 
            Random gen = new Random(); 
            int range = ((TimeSpan)(DateTime.Today - start)).Days; 
            return () => start.AddDays(gen.Next(range));
        }
link|flag
Can you explain how this is beneficial? Couldn't start, gen, and range be class members instead? – Mark A. Nicolosi Oct 12 '08 at 3:51
They could and in this case they are. Under the hood this will generate a lexical closure which is a clrass containing start,gen and range as members. This is just more concise. – JaredPar Oct 12 '08 at 16:32
Nice encapsulation. – Drew Noakes Oct 23 '08 at 8:08
vote up 1 vote down

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).

link|flag
Thanks Friol. I was gonna ask how to limit the number passed into random. Joel has posted an example with code sample, so I'll mark his response as the answer. – Judah Himango Oct 12 '08 at 0:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.