Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Cultures: Localize DayOfWeek?

How do I localize a DayOfWeek other than today?
The following works just fine for the current day:

DateTime.Now.ToString("dddd", new CultureInfo("it-IT")); 

But how can I localize all days of the week??

Edit: A possible (and probably very, very wrong) solution I came up with could be to create DateTime values for an entire week, and then use date.ToString("dddd", new CultureInfo("it-IT")); on them, but that just seems wrong on so many levels.

like image 869
bevacqua Avatar asked May 31 '11 02:05

bevacqua


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C full form?

Originally Answered: What is the full form of C ? C - Compiler . C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell Labs. C was originally first implemented on the DEC PDP-11 computer in 1972.

How old is the letter C?

The letter c was applied by French orthographists in the 12th century to represent the sound ts in English, and this sound developed into the simpler sibilant s.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


1 Answers

How about

DateTimeFormatInfo.CurrentInfo.GetDayName( dayOfWeek ) 

or

DateTimeFormatInfo.CurrentInfo.GetAbbreviatedDayName( dayOfWeek ) 

Simply takes a DayOfWeek enumeration and returns string that is the name in the current culture.

Edit:

If you're looking for a specific culture it would be

var cultureInfo = new CultureInfo( "it-IT" ); var dateTimeInfo = cultureInfo.DateTimeFormat; 

then you can call GetDayName or GetAbbreviatedDayName as you choose.

There's even a AbbreviatedDayNames/DayNames arrays if you want them all

like image 53
MerickOWA Avatar answered Sep 23 '22 19:09

MerickOWA