I'm getting a date in the format: string: "01/03/2010 23:00"
How can I verify that this date is valid?
By validate, disregard questions of days or months having wrong numbers. The validation would only be to see if there are no letters among the numbers and / or symbols that in the wrong places, for example: 0 // 03/2010 23 :: 0
Is there any way I can do a "full" validation or do I need to separate the elements of the date and check them one by one?
I can not use the DateTime and TimeSpan classes.