79112791

Date: 2024-10-22 07:04:38
Score: 1
Natty:
Report link
var oldculture = CultureInfo.CurrentCulture; //to check what culture your c# app is using

Thread.CurrentThread.CurrentCulture = new CultureInfo("EN-US"); //to override the current culture of your c# app

Convert.ToDateTime uses the current datetime culture on your system but there is a twist..

if you are running visual studio in admin mode, it will utilize the datetime culture set on the admin user.

to change windows datetime:

Goto adjust datetime settings

here change the region setting

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hassaan Raza Now