Advertisement
wingman007

OOP2016FullTime3PrinciplesProgram

May 4th, 2016
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.63 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace World
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.WriteLine("National Income = {0}", Person.CalculateNationalIncome());
  14.             Console.WriteLine("Natinality {0}", Person.Nationality);
  15.             Console.WriteLine("PI = {0}", Person.PI);
  16.             // string name1 = "Alex";
  17.             //int age1 = 20;
  18.             // string[] names = new string[23];
  19.  
  20.             // string name2 = "Mariya";
  21.             // int age2 = 18;
  22.             //int counter = 0;
  23.             //List<Person> people = new List<Person>();
  24.  
  25.             Person person1 = new Person("Stoyan", 52); // "Stoyan", 52
  26.             //counter++;
  27.             //people.Add(person1);
  28.  
  29.             // 1. Fields
  30.             // person1.name = "Stoyan";
  31.             // person1.age = 52;
  32.             // Console.WriteLine("My name is {0}. I am {1} years old.", person1.name, person1.age);
  33.             // 2. Getter Setter
  34.             // person1.SetName("Stoyan");
  35.             // person1.SetAge(52);
  36.             // Console.WriteLine("My name is {0}. I am {1} years old.", person1.GetName(), person1.GetAge());
  37.             // 3. Properties
  38.             // 4. Auto Properties
  39.             // person1.Name = "Stoyan";
  40.             // person1.Age = 52;
  41.             // Console.WriteLine("My name is {0}. I am {1} years old.", person1.Name, person1.Age);
  42.             person1.IntroduceYourSelf();
  43.  
  44.             Person person2 = new Person("Alex", 21);
  45.             //counter++;
  46.             //people.Add(person2);
  47.             // person2.name = "Alex";
  48.             // person2.age = 21;
  49.             // Console.WriteLine("My name is {0}. I am {1} years old.", person1.name, person1.age);
  50.             // person2.SetName("Alex");
  51.             // person2.SetAge(21);
  52.             // Console.WriteLine("My name is {0}. I am {1} years old.", person2.GetName(), person2.GetAge());
  53.             // person2.Name = "Alex";
  54.             // person2.Age = 21;
  55.             // Console.WriteLine("My name is {0}. I am {1} years old.", person2.Name, person2.Age);
  56.             person2.IntroduceYourSelf();
  57.  
  58.             CreateAnotherInstance();
  59.             // Person.Counter = 67;
  60.             //Console.WriteLine("The population of my little ki9ngdom is {0}", counter);
  61.             // Console.WriteLine("The population of my little ki9ngdom is {0}", people.Count);
  62.             Console.WriteLine("The population of my little ki9ngdom is {0}", Person.Counter);
  63.             // person2.only4Read = 56.5;
  64.             Console.WriteLine("only4Read = {0}", person2.only4Read);
  65.             Person.Nationality = "German";
  66.             person1.IntroduceYourSelf();
  67.             person2.IntroduceYourSelf();
  68.             Console.WriteLine("National Income = {0}", Person.CalculateNationalIncome());
  69.  
  70.            
  71.             Student student1 = new Student("Kircho", 25, 242342);
  72.             student1.IntroduceYourSelf();
  73.  
  74.             Athlete athlete1 = new Athlete("Krisi", 26, "Box");
  75.             athlete1.IntroduceYourSelf();
  76.  
  77.             // Console.WriteLine(athlete1);
  78.  
  79.             /*
  80.             Person person3; // = new Student("Kircho", 25, 242342);
  81.             // person3.IntroduceYourSelf();
  82.             person3 = new Athlete("Krisi", 26, "Box");
  83.             person3.IntroduceYourSelf();
  84.             */
  85.  
  86.             Executor exec1 = new Executor(student1);
  87.             exec1.MakeItSpeak();
  88.         }
  89.  
  90.         public static void CreateAnotherInstance()
  91.         {
  92.             Person person1 = new Person("Petko", 45);
  93.         }
  94.     }
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement