Hi I am setting the culture in program.cs
var culture = new CultureInfo("da-DK");
culture.DateTimeFormat.ShortDatePattern = "dd-MM-yyyy";
CultureInfo.DefaultThreadCurrentCulture = culture;
CultureInfo.DefaultThreadCurrentUICulture = culture;
If I don't set it I get "dd.MM.yyyy"
I would like to set it to "dd/MM/yyyy" but when I do that it revert to "dd.MM.yyyy"
Is this me using the culture object in the wrong way or a bug in the Telerik Components?