just retrive the system clock time and the check to see if it equal to the time you are after... surely that would work no.
Somehting like this
DateTime theDate = DateTime.Parse("27 Mar 2008 00:26:00");
if (DateTime.Now => theDate)
{
MessageBox.Show((DateTime.Now).ToString());
}