Get DateTime.DayOfWeek for specific culture

.net, c#

Solution

Try the following:

DateTime.Now.ToString("dddd", new System.Globalization.CultureInfo("ar-EG"))

For details, MSDN

Problem

Is it possible to get DayOfWeek for a specific culture? Any clue? Thank you!!!

Original source