You can set the culture of the current thread to any culture you want:
Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.InvariantCulture;
Note that changing the culture also affects things like string comparison and sorting, date formats and parsing of dates and numbers.