P
Philip Townsend
I am having difficulty with a simple routine as follows:
public static bool VerifyExpirationDate(DateTime date)
{
if(date>=DateTime.Now)return true;
else return false;
}
The problem is that when today's date is passed in, the method returns
false. Any ideas? Thanks!
*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
public static bool VerifyExpirationDate(DateTime date)
{
if(date>=DateTime.Now)return true;
else return false;
}
The problem is that when today's date is passed in, the method returns
false. Any ideas? Thanks!
*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!