public Person(string name, int age, string email)
public static void PrintInfo()
Console.WriteLine("Name:{0} Age:{1} Email:{2}", name, age, email);
public Student(string name,int age,string email,string clas,int nomer) : base(name,age,email)
Console.WriteLine ("Clas:{0} Nomer: {1} ", clas, nomer);
public static void Main()
Person p = new Person("Петър Петров", 17, "pp@mail.bg");
Student st = new Student("Иван Петров", 17, "iv@mail.bg", "11a",13);