I have to convert string in mm/dd/yyyy format to datetime variable but it should remain in mm/dd/yyyy format.
string strDate = DateTime.Now.ToString("MM/dd/yyyy");
Please help.
|
|
You are looking for the So you can do:
Which will give you a If you need to specify which date format you want to use, you would use Which you would use in a situation like this (Where you are using a British style date format):
|
|||
|
|
|
You need an uppercase
Lowercase e.g. a full date time string might look like this:
Notice the uppercase/lowercase Also if you will always deal with the same datetime format string, you can make it easier by writing them as C# extension methods.
EXAMPLE: Translating between DateTime/string
Note that there is NO way to store a custom
The only easy way you can do is to roll a custom extension method. Also, the other easy way would be to use a different "container" or "wrapper" class for your DateTime, i.e. some special class with |
|||||||
|
|
How about this: String Format for DateTime [C#] |
|||
|
|