Is there a way to find the days that constitute a weekend or workweek based on different cultures using the .NET framework? For example, some Muslim countries have a workwee
The only thing i know is how to get the day the week starts. Perhaps this can help:
CultureInfo.CurrentCulture.DateTimeFormat.FirstDayOfWeek
from System.Globalization, perhaps you find in this package something.
There are several Calendar-Classses like JulianCalendar, HebrewCalendar and so on. It could be possible to find there what you want.