How can I calculate the last business day of the month in .NET?
feedback
|
|
I would do it like this for a Monday through Friday business week:
| |||
|
feedback
|
|
Assuming business days are monday to friday (this doesn't account for holidays), this function should return the proper answer:
| |||
|
feedback
|
|
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". | |||
|
feedback
|
|
general purpose, pseudocode:
| |||||
feedback
|
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
I could think of this simple C# code which gives you the last business day of current month. This only takes Saturday or Sunday as holidays. Country specific local holidays should be handled manually.
| |||
|
feedback
|