For an application we develop, we use the \"G\" format everywhere in our application.
\"G\"
We want to change a little bit this format:
We need to display
You can set the CurrentCulture for the current thread and specify a deviating LongTimePattern:
CultureInfo culture = Thread.CurrentThread.CurrentCulture.Clone(); change the culture.DateTimeFormat.LongTimePattern = "your pattern"; Thread.CurrentThread.CurrentCulture = culture;