How do I do this in C#?

currentDate == 04/01/2010 ???

Thanks guys its really important to time my prank.

Would be even better if there was a solution using complex regular expressions.

link|improve this question
...snickers.... – j0rd4n Mar 31 '10 at 22:58
Just put it live - better to release early than get caught with a bunch of surplus freak horses. – amelvin Mar 31 '10 at 23:12
2  
How do you want to handle time zones? It's always April Fools' Day in Australia. – Andrew Grimm Mar 31 '10 at 23:13
1  
Sweet rainbow colored avatars, it's beautiful, man. I love you guys. All of you. – Warren P Mar 31 '10 at 23:31
2  
i really wanna tag this [belongs-on-stackoverflow] – quack quixote Apr 1 '10 at 1:39
1  
i resent being migrated :( – user145540 Apr 1 '10 at 2:30
feedback

migrated from stackoverflow.com Apr 1 '10 at 0:38

This question came from our site for professional and enthusiast programmers.

10 Answers

You should investigate the Rx framework. It probably has a way of doing this backwards.

link|improve this answer
feedback

Just don't steal StackOverflow's code... Since that prank started about 1.5 hours early for April 1 (UTC). ;)

link|improve this answer
1  
Daylight savings get's you every time... – Jason Punyon Mar 31 '10 at 23:22
Yeah, don't trust that code: it can't even calculate your rep score in your local time zone because that's "difficult" ... meta.stackoverflow.com/questions/1359/… – Hightechrider Apr 1 at 6:41
feedback
 if (DateTime.Now.Month == 4 && DateTime.Now.Day == 1) { //do unicorn prank }

:))

link|improve this answer
5  
Of course, there is an edge case just before midnight going into May... – Marc Gravell Mar 31 '10 at 23:04
1  
But this is server side! – HeavyWave Mar 31 '10 at 23:37
feedback

What ever you do, make sure you get it right. Unicorns are fastidiously prompt creatures.

link|improve this answer
feedback

C# is not up to the task, you should really consider jQuery!

link|improve this answer
feedback

Something like

if (Datetime.Now > Convert.ToDateTime("04/01/2010") && DateTime.Now < Convert.ToDateTime("04/02/2010"))

should work.

link|improve this answer
feedback
using System;
...
if(DateTime.Now.ToString("MM/dd") == "04/01")
link|improve this answer
feedback

If it's a web application you will have to send the clients time to the server. Otherwise

if (DateTime.Now.Month == 4 && DateTime.Now.Day == 1)

will do the trick.

link|improve this answer
feedback

You need to write an Oracle PL/SQL procedure that queries a Time Server using NTP and puts the value into a database. Then you can write a Web Service in Java that reads it from the Oracle Server and converts it to JSON.

Use jQuery to call the web service and you're done.

Sorry, no other way to do this, that's why Jeff needed VC money as Oracle is not part of Bizspark.

link|improve this answer
You forgot the part where the web service prints out the time, then waits until someone manually scans and emails the result to an email account being monitored by biztalk which then writes it to a file that the original process is waiting for. At least, thats how I roll. – John Buchanan Apr 1 '10 at 0:01
feedback

You should do it in Javascript instead, using the browser's local time, then you'll get it right.

link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged