static bool isExcludedDays(List<int> days, DateTime targetDate) { for (int day in days) { if (day == targetDate.weekday) { return true; } } return false; }