Calendar Design Project is a academic work on an algorithm in C# to obtain the calendar referring to the month and year that the user entered, with valid months from 1 to 12 and years from 1 to 9999.
✔ Show the days of the month of the year chosen by the user
✔ Displays a calendar design
The Program asks the user for month and year values in the main program.cs class, passes these values to the objects of the class called calendar.cs which has 3 functions, 2 of which are to validate the month and year that the user has typed, the third function is the one that generates the calendar in which it searches for the first day that begins that month that the user typed and the number of days in that month, and with these data it skips the empty days and builds an array with the existing days of that month.


