using System; using DateTest; public class Tester { public void Run() { // Create an instance of the date object Date oDate = new Date(1986, "December", 10); // Create another instance of the date object using // the overloaded constructer Date oDate2 = new Date("May", 12); // Display the values in the first date object oDate.DisplayDate(); // Display the values in the second date object oDate2.DisplayDate(); // Change the property values in oDate oDate.Year = 1977; oDate.Month = "September"; oDate.Day = 8; // And then display them oDate.DisplayDate(); } static void Main() { Tester t = new Tester(); t.Run(); Console.ReadLine(); } }