I'm currently trying to display a datetime in the format of the local culture of the user.
As an example, an user from the US will see a date as 20 June 2020 05.50 PM
where as an user from germany will see the date as 20 Juni 2020, 17:50
.
My issue is, that e.g for the german case, I'd like to have a Uhr
added at the end, so it will be 20 Juni 2020, 17:50 Uhr
as explained in this related question.
Is there any way to achieve that in .NET as well? In theory I could just keep checking the culture and add Uhr
if it's a german one, but I assume that there are other cultures as well with a similar suffix.