I'm fresh to C# and DotNet. I'd want to convert a text in the format mm/dd/yyyy to a DateTime object. I attempted to use the parse function as shown below, but it failed due to a runtime error.
Any thoughts on how I can convert it to datetime?
DateTime dt=DateTime.Parse("24/01/2013");