Here is the code. I still get incorrect results
string srRegisterDate = "25.07.2009 00:00:00"
CultureInfo culture = new CultureInfo("en-US");
srRegisterDate = String.Format("{0:dddd, MMMM d, yyyy}", Convert.ToDateTime(srRegisterDate), culture);
The result is Cumartesi, Temmuz 25, 2009
Instead it should be Saturday, July 25, 2009
How can i fix this error?
C#.net v4.5.2