wingman007

OOP4BeginnersProgram

Mar 25th, 2016
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.23 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 World1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.WriteLine("Nationality is {0}", Person.Nationality);
  14.             Console.WriteLine("PI is {0}", Person.PI);
  15.             Console.WriteLine("National Income {0}", Person.CalculateNationalIncome());
  16.             // I. Structural approach
  17.             // string[] personsName = new string[5];
  18.             // string person1Name = "John";
  19.             // int person1Age = 40;
  20.  
  21.             // string Preson2Name = "Stoyan";
  22.             // int Person2Age = 52;
  23.  
  24.             // int counter = 0;
  25.  
  26.             // II. OOP approach
  27.             Person person1 = new Person(52, "Stoyan");
  28.             // counter++;
  29.             // 1. Modeling with fields
  30.             // person1.name = "Stoyan";
  31.             // person1.age = 52;
  32.             // 2. Modeling with Getter and Setter
  33.             // person1.SetName("Name");
  34.             // person1.SetAge(52);
  35.             // 3. With properties
  36.             // 4. Autoproperties
  37.             // person1.Name = "Stoyan";
  38.             // person1.Age = 52;
  39.  
  40.             Person person2 = new Person("John", 20, 12, "Stoyan", "Sean");
  41.             // counter++;
  42.             // person2.name = "John";
  43.             // person2.age = 20;
  44.             // person2.SetName("John");
  45.             // person2.SetAge(20);
  46.             // person2.Name = "John";
  47.             // person2.Age = 20;
  48.  
  49.             // Console.WriteLine("My name is {0}. I am {1} years old!", person1.name, person1.age);
  50.             // Console.WriteLine("My name is {0}. I am {1} years old!", person2.name, person2.age);
  51.  
  52.             // Console.WriteLine("My name is {0}. I am {1} years old!", person1.GetName(), person1.GetAge());
  53.             // Console.WriteLine("My name is {0}. I am {1} years old!", person2.GetName(), person2.GetAge());
  54.  
  55.             // Console.WriteLine("My name is {0}. I am {1} years old!", person1.Name, person1.Age);
  56.             // Console.WriteLine("My name is {0}. I am {1} years old!", person2.Name, person2.Age);
  57.  
  58.             DoSomethingElse();
  59.  
  60.             person1.IntroduceYourSelf();
  61.             person2.IntroduceYourSelf();
  62.             // Console.WriteLine("The population of my little kingdom is {0}", counter);
  63.             Console.WriteLine("The population of my little kingdom is {0}", Person.Counter);
  64.             Person.Nationality = "German";
  65.             Console.WriteLine("The Johns friend on position 1 is {0}", person2[1]);
  66.  
  67.             // person1.onlyRead = 5.6;
  68.  
  69.             person1.IntroduceYourSelf();
  70.             person2.IntroduceYourSelf();
  71.  
  72.             Console.WriteLine("National Income {0}", Person.CalculateNationalIncome());
  73.  
  74.             Student student1 = new Student("Kircho", 25, "dasd2342da");
  75.             student1.IntroduceYourSelf();
  76.  
  77.             Athlete athlete1 = new Athlete("Kris", 27, "Box");
  78.             athlete1.IntroduceYourSelf();
  79.  
  80.             Executor exec1 = new Executor(athlete1);
  81.             exec1.MakeHimSpeak();
  82.         }
  83.  
  84.         static void DoSomethingElse()
  85.         {
  86.             Person person2 = new Person("John", 25);
  87.         }
  88.     }
  89. }
Add Comment
Please, Sign In to add comment