예제 #1
0
        static void Main(string[] args)
        {
            var person = new Person();

            person.SetBirtDate(new DateTime(1982, 1, 1));

            Console.WriteLine("BD=" + person.GetBirthDate());
        }