Possible Duplicate:
Finding weekend days based on culture
Is there any locale info available in .NET to know if a given date falls on a weekday or a weekend?
i would use the function:
public Boolean IsWeekend(DateTime value, CultureInfo cultureInfo)
{
return (value.DayOfWeek == DayOfWeek.Saturday || value.DayOfWeek == DayOfWeek.Sunday);
}
But it returns invalid results for some cultures.
Has .NET already done the work to compile what days are weekends for all cultures?