Dear All,
Anyone please tell how to change format of Date to "dd/MM/yyyy hh:mm:ss" from "MM/dd/yyyy hh:mm:ss".
Here is an issue:
//================
var GetLastDBBackupTime = string.Empty;
GetLastDBBackupTime = Convert.ToDateTime("12/15/2017 15:30:25").ToString("dd/MM/yyyy hh:mm:ss");//Showing error Inputed string was not in Correct format.
Output will be : 15/12/2017 15:30:25
if (Convert.ToDateTime(DateTime.Now.ToString("dd/MM/yyyy hh:mm:ss")).TimeOfDay > Convert.ToDateTime(GetLastDBBackupTime).AddHours(1).TimeOfDay)
CreateBackup();
Please help.
its Urgent