vote up 0 vote down star

Trying to do the following:

order.ExpirationDate =(DateTime) ( ExpMonth + "/" + ExpYear);

ExpMonth, Expyear are both ints.

flag

73% accept rate

4 Answers

vote up 11 vote down check

This is going to be better for you:

order.ExpirationDate = new DateTime(ExpYear, ExpMonth, 1)
link|flag
+1 This is the better answer, I deleted mine. – Andrew Hare Apr 21 at 15:55
vote up 0 vote down

Try creating a new DateTime using the constructor which takes month and year as parameters (it also takes a day, but you can default to 1) instead of casting a string, it's much cleaner and easier.

link|flag
vote up 0 vote down

Try this:

DateTime dt;
if (DateTime.TryParse(ExpMonth + "/" + ExpYear, out dt))
{
   // success
}
link|flag
vote up 0 vote down

You need to use:

DateTime.Parse(ExpMonth.ToString() + "/" + ExpYear.ToString());
link|flag

Your Answer

Get an OpenID
or

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