How can I convert '11-09-2012 5:08:31 PM' to '09/11/2012'? (From dd-MM-yyyy HH:mm:SS to MM/dd/yyyy).
Date is 11 September 2012.
Or is there any way to convert this in C#? But in C# I want only date not string.
|
How can I convert Date is |
|||||||||||||||||||
|
|
Using SQL Server query:
This will convert in To convert using C#. You can do that like this:
But as you don't want result in
|
||||
|
|
|
SQL SERVER : Do like this for [MM/DD/YYYY] format:
Similary, if you want to convert in [DD/MM/YYYY] format, you can do like this
C# In C#, you simply do like this:
|
||||
|
|
|
In c# you should be able to use the method:
Or even:
Note from MSDN:
|
|||
|
|||
|
|
|
Here is the sample code using Date time parse and for more information you can visit the link C-sharp date time formats
|
|||
|
|