I have below code to convert date time from text to 12 hours date format, But showing Arabic AM & PM .
How to get the result in English AM/PM format
Code:
string iDate = "02/06/2018 16:58:42";
DateTime CHECKTIME = Convert.ToDateTime(iDate);
Label1.Text=CHECKTIME.ToString();
Result:
02/06/2018 04:58:42 م
Expected Result:
02/06/2018 04:58:42 PM