S
sherifffruitfly
Hi all,
The easiest thing I can see is to use this little class:
http://www.codeproject.com/csharp/busdatescalculation.asp
And read holidays from a text file into a Hashtable.
Example of the functionality I need:
DateTime iHateValDay = DateTime.Parse("14 Feb 2007");
int daysRemaining = DaysLeft(iHateValDay);
Here, daysRemaining should be 9.
Does anyone know of a simpler way to achieve this?
Thanks for any ideas,
cdj
The easiest thing I can see is to use this little class:
http://www.codeproject.com/csharp/busdatescalculation.asp
And read holidays from a text file into a Hashtable.
Example of the functionality I need:
DateTime iHateValDay = DateTime.Parse("14 Feb 2007");
int daysRemaining = DaysLeft(iHateValDay);
Here, daysRemaining should be 9.
Does anyone know of a simpler way to achieve this?
Thanks for any ideas,
cdj