Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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....

share|improve this question
Just look at the list of related questions. Or you know.. search. – Ray Jun 23 '11 at 16:43

marked as duplicate by Gilles, bažmegakapa, David Thomas, Deepak Danduprolu, Ken White Jun 23 '11 at 22:59

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

DateTime.Parse or its sister method DateTime.ParseExact.

share|improve this answer
DateTime.TryParse, DateTime.TryParseExact – Saad Imran. Jun 23 '11 at 16:42
1  
Or DateTime.TryParse, which is always good if there's a chance the string your parsing is malformed or null. – Slider345 Jun 23 '11 at 16:43
This may be helpful too, if your date-format changes. – cacho Jun 23 '11 at 16:48

Use DateTime.ParseExact to specify the format of the input string:

DateTime d = DateTime.ParseExact(
                 "15/03/2046",
                 "dd/MM/YYYY",
                 CultureInfo.InvariantCulture
             );
share|improve this answer

More generic code, using extension method, and default value in case if it can't parse date

void Main()
{
    var dt = "15/03/2046";

    dt.ToDateTime("fr-FR", DateTime.Now).Dump();
}

public static class Extensions
{
    public static DateTime ToDateTime(this string dateTime, string culture, DateTime defaultValue)
    {
        DateTime dt;

        if (DateTime.TryParse(dateTime,  System.Globalization.CultureInfo.CreateSpecificCulture(culture), System.Globalization.DateTimeStyles.None, out dt))
            return dt;
        else
            return defaultValue;
    }
}
share|improve this answer

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