Possible Duplicate:
How can I convert a string into datetime in .NET?
i have a string in the following format "15/03/2046". how can convert this string to a DateTime object?
My problem is when i do Convert.ToDateTime("15/03/2046") i get an exception.
when i do Convert.ToDateTime("03/03/2046") every thing works fine.
so i guess that i have to specify the format somehow while converting....
