Exemplo n.º 1
0
 static void Main(string[] args)
 {
     Person p = new Person("Василий", "Кац", 19, Person.Genders.Male);
     p.Dislay("Васян");
     Person p1 = new Person("Vasily", "Kats", 19, Person.Genders.custom);
     Console.WriteLine(p);
     Console.WriteLine(p1);
     Console.ReadKey();
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Person p = new Person("Rusakov", "Aleksey", 35, Person.Genders.Male);

            p.Dislay("Максим");
            Person p1 = new Person("Rusakov", "Aleksey", 35, Person.Genders.custom);

            Console.WriteLine(p);
            Console.WriteLine(p1);
            Console.ReadKey();
        }