logo CodeStepByStep logo

Date

Language/Type: C# classes

Write a class of objects named Date that remembers information about a month and day. Ignore leap years and don't store the year in your object. You must include the following public members:

member name kind description
Date(m, d) constructor constructs a new date representing the given month and day
DaysInMonth() method returns the number of days in the month stored by your date object
Day property returns the day (read-only)
Month property returns the month (read-only)
NextDay() method advances the Date to the next day, wrapping to the next month and/or year if necessary
ToString() method returns a string representation such as "07/04"

You should define the entire class including the class heading, the private fields, and the declarations and definitions of all the public members.

Class: Write a complete C# class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.