Hi guys,
Is there any way to determine if a particular date falls on a Weekend using the Calendar class? Just curious to see if there's a way to do it without resorting to
Code:int currentday = Calendar.DAY_OF_WEEK if (currentday == Calendar.SATURDAY || currentday == Calendar.SUNDAY) //etc...




Reply With Quote