How can I calculate the last business day of the month in .NET?
|
|
|||||
|
|
|
I would do it like this for a Monday through Friday business week:
|
||
|
|
|
|
First, get the last day of the month. Then keep decrementing until you're either past the beginning of the month, or have hit a date that validates as a "business day". |
||
|
|
|
|
I don't believe there's a built in way, but it shouldn't be too hard to write a method to figure it out. |
||
|
|
|
|
general purpose, pseudocode:
|
||||
|
|
|
Assuming business days are monday to friday (this doesn't account for holidays), this function should return the proper answer:
|
||
|
|
|
|
|
||
|
|
|
|
Be sure to not forget public holidays. Those make it a little harder since there are lots of regional differences and are mostly not given by a simple formula. You may need to look them up somewhere or make a table with the dates yourself. |
||
|
|
|
|
can u healp me to faind the pseudocod of this program: // This program outputs a calendar. // By Neil Broadbent import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; import java.util.StringTokenizer;
|
|||
|
|
