Advertisement
wingman007

OOP2016FullTimeInheritanceProgram

Apr 19th, 2016
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.73 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 World3a3b
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.WriteLine("National Income of my Little Kingdom is {0}",
  14.                 Person.CalculateNationalIncome());
  15.             Console.WriteLine("Nationality {0}", Person.Nationality);
  16.             Console.WriteLine("PI = {0}", Person.PI);
  17.            
  18.             // string name1 = "Alex";
  19.             // int age1 = 20;
  20.             // string[] names = "Alex";
  21.             //int counter = 0;
  22.             //List<Person> people = new List<Person>();
  23.  
  24.             Person person1 = new Person("Stoyan", 52);
  25.             //counter++;
  26.             //people.Add(person1);
  27.             // 1. fields
  28.             // person1.name = "Stoyan";
  29.             // person1.age = 52;
  30.             // 2. setters getters
  31.             // person1.SetName("Stoyan");
  32.             // person1.SetAge(52);
  33.             // 3. Properties
  34.             // 4. Auto Properties
  35.             // person1.Name = "Stoyan";
  36.             // person1.Age = 52;
  37.  
  38.             // Console.WriteLine("My name is {0}. I am {1} yers old.", person1.name, person1.age);
  39.             // Console.WriteLine("My name is {0}. I am {1} yers old.", person1.GetName(), person1.GetAge());
  40.             // Console.WriteLine("My name is {0}. I am {1} yers old.", person1.Name, person1.Age);
  41.  
  42.             person1.IntroduceYourSelf();
  43.  
  44.             Person person2 = new Person("Alex", 20);
  45.             //counter++;
  46.             //people.Add(person2);
  47.             // person2.name = "Alex";
  48.             // person2.age = 20;
  49.             // person2.SetName("Alex");
  50.             // person2.SetAge(20);
  51.             // person2.Name = "Alex";
  52.             // person2.Age = 20;
  53.  
  54.             // Console.WriteLine("My name is {0}. I am {1} yers old.", person2.name, person2.age);
  55.             // Console.WriteLine("My name is {0}. I am {1} yers old.", person2.GetName(), person2.GetAge());
  56.             // Console.WriteLine("My name is {0}. I am {1} yers old.", person2.Name, person2.Age);
  57.             person2.IntroduceYourSelf();
  58.  
  59.            
  60.             CreateAnotherPerson();
  61.  
  62.             GC.Collect();
  63.  
  64.             // Person.Counter = 456;
  65.  
  66.             //Console.WriteLine("The population of my little kingdom is {0}", counter);
  67.             //Console.WriteLine("The population of my little kingdom is {0}", people.Count);
  68.             Console.WriteLine("The population of my little kingdom is {0}", Person.Counter);
  69.             // person1.only4Read = 45.6;
  70.             Console.WriteLine("only 4 read = {0}", person2.only4Read);
  71.  
  72.             Person.Nationality = "German";
  73.  
  74.             person1.IntroduceYourSelf();
  75.             person2.IntroduceYourSelf();
  76.  
  77.             Console.WriteLine("National Income of my Little Kingdom is {0}",
  78.                 Person.CalculateNationalIncome());
  79.  
  80.             /*
  81.             Person person3 = new Student("Kircho", 25, 23432);
  82.             person3.IntroduceYourSelf();
  83.             person3 = new Athlete("Krisi", 26, "Box");
  84.             person3.IntroduceYourSelf();
  85.             */
  86.  
  87.             // Object student1 = new Student("Kircho", 25, 23432);
  88.  
  89.             Student student1 = new Student("Kircho", 25, 23432);
  90.             student1.IntroduceYourSelf();
  91.             Console.WriteLine(student1);
  92.  
  93.             Athlete athlete1 = new Athlete("Krisi", 26, "Box");
  94.             // athlete1.IntroduceYourSelf();
  95.             // Console.WriteLine(athlete1.ToString());
  96.             Console.WriteLine(athlete1);
  97.  
  98.         }
  99.  
  100.         public static void CreateAnotherPerson()
  101.         {
  102.             Person person1 = new Person("Petko", 45);
  103.         }
  104.     }
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement