string date = "2017-01-05T00:00:00+00:00";
string time = Convert.ToDateTime(date).ToString("MM/dd/yyyy");
I am getting the above date from my client database, i am trying to convert that time to string but when i executed it was returning 01/04/2017 . why this is converting one day before ?