I want a date format in danish in this format
"Tor. 27/6"
Tor is short for torsdag, meaning thursday in danish
I have this code
string formatted = datetime.ToString("ddd. dd/MM", new System.Globalization.CultureInfo("da-DK"));
It's returning
"To. 27-6"
so it's using a dash and ignoring the slash. How do i force it to use slash while still using cultureinfo danish?