Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace World1a
- {
- class Program
- {
- static void Main(string[] args)
- {
- // int counter = 0;
- // int age;
- // Console.WriteLine("My age is {0}", age);
- // counter++;
- Person stoyan = new Person(); // "Stoyan", 52
- // 1. Pure modeling with fields
- // stoyan.name = "Stoyan";
- // stoyan.age = 52;
- // 2. Getters Setters
- // stoyan.SetName("Stoyan");
- // stoyan.SetAge(52);
- // Console.WriteLine("My name is {0}. I am {1} years old!", stoyan.GetName(), stoyan.GetAge());
- // 3. Properties
- // stoyan.Name = "Stoyan";
- // stoyan.Age = 52;
- // Console.WriteLine("My name is {0}. I am {1} years old!", stoyan.Name, stoyan.Age);
- stoyan.IntroduceYourSelf();
- // counter++;
- Person monika = new Person("Monika", 18, 12.3, "Ivan", "Petko");
- // monika.Name = "Monika";
- // monika.Age = 18;
- // Console.WriteLine("My name is {0}. I am {1} years old!", monika.Name, monika.Age);
- monika.IntroduceYourSelf();
- // Console.WriteLine("The population in my Little Kingdom is {0}", counter);
- CreateAnother();
- Console.WriteLine("The population in my Little Kingdom is {0}", Person.population);
- Person.nationality = "German";
- stoyan.IntroduceYourSelf();
- monika.IntroduceYourSelf();
- Student student1 = new Student("Kircho", 24, 21321);
- student1.IntroduceYourSelf();
- Athlete athlete = new Athlete("Krisi", 26, "Box");
- athlete.IntroduceYourSelf();
- Executor exec1 = new Executor(student1);
- exec1.MakeHimSpeak();
- Console.Read();
- }
- public static void CreateAnother()
- {
- Person person1 = new Person();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement