What is the best way to add zeros to date time in C#
Example string "9/10/2011 9:20:45 AM" convert to string "09/10/2011 09:20:45 AM"
|
If you say, that it is both strings, then you should use the DateTime.TryParse method:
|
|||
|
|
More information / methods about formatting Date can be found Here From you comment It's better to use the following to parse a DateTime
You can then check wether it fails by comparing it to DateTime.MinValue rather then crash the application if the Convert.ToDatetime fails |
|||||||||||
|
|
You can use |
|||||
|
|
Use |
||||
|
|
|
just use this code its will help you..
|
|||
|
DateTimeobject or on the resultant String of ToString() method of DateTime? Thanks :) – Amedio May 20 '11 at 8:28