Click here to Skip to main content
15,885,842 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,
Please help me out in converting datetime format

i have datetime in string format "
12/4/2012 11:03:21 AM
"

Now i tried the below code

DateTime date1 = new DateTime();
            date1 =Convert.ToDateTime(drW["ReportedDate"].ToString().Trim());
            DateTimeOffset dateOffset = new DateTimeOffset(date1,TimeZoneInfo.Local.GetUtcOffset(date1));

            dtInspectionsList.Rows[count]["WODate"] = dateOffset.ToString("o");


It give me result :"
2012-12-11T12:32:16.0000000+05:30
"

But My required format is "
2010-08-17T12:31:37.06+05:30
"

Please help me out to resolve this issue, thanking you all in advance


Thanks
AP
Posted

1 solution

You should try MSDN:
Custom Date and Time Format Strings[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900