public static void Main()
Console.WriteLine("Hello World");
day today = new day(1,1,1900,1);
day morrow = new day(1,1,1900,1);
Console.WriteLine("{0},{1},{2},{3}",morrow.year,morrow.monthoftheyear,morrow.date,morrow.dayoftheweek);
static public day NewDay(day today)
day tomorrow = new day(1,1,1900,1);
{ tomorrow.date = today.date + 1;
tomorrow.year = today.year;
tomorrow.monthoftheyear = today.monthoftheyear;
tomorrow.dayoftheweek = today.dayoftheweek +1;
public enum days {monday=1,tuesday,wednsday,thursday,friday,saturday,sunday};
public enum months {january, february, march, april, may, june, july, august, september,october,november};
public days dayoftheweek;
public months monthoftheyear;
public day(int _day, int _month, int _year, int _date)
dayoftheweek = (days)_day;
monthoftheyear = (months) _month;