What is the best way to convert string to date in C# if my incoming date format is in YYYYMMDD
Ex: 20001106
|
|
|
Use DateTime.ParseExact(). Something like:
|
|||||||
|
|
||||
|
|
Check DateTime.ParseExact or DateTime.TryParseExact. |
|||
|
|
|
use DateTime.TryParseExact with a pattern string of If you are stuck with .NET 1.1 use DateTime.ParseExact see Standard DateTime Format Strings for the rules for making pattern strings. |
||||
|
|
|
Using TryParseExact is generally nicer than ParseExact as it won't throw an exception if the conversion fails. Instead it returns true if it's successful, false if it's not:
|
|||
|
|