This line is parsed DateTime.Parse("08/08/2000 00:00:00")
This line isn't parsed DateTime.Parse("08/24/2000 00:00:00")
Question is very simple and stupid, I'm sorry but can't figure out why.
This line is parsed DateTime.Parse("08/08/2000 00:00:00")
This line isn't parsed DateTime.Parse("08/24/2000 00:00:00")
Question is very simple and stupid, I'm sorry but can't figure out why.
This is likely a localization issue, where it's trying to parse in day/month/year format, and you're assuming it's month/day/year format.