Advertisement
wingman007

OOPPrinciplesStatic1aProgram

Mar 18th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.14 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 World1a
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.             // int counter = 0;
  15.             // int age;
  16.  
  17.            // Console.WriteLine("My age is {0}", age);
  18.  
  19.             // counter++;
  20.             Person stoyan = new Person(); // "Stoyan", 52
  21.            
  22.             // 1. Pure modeling with fields
  23.             // stoyan.name = "Stoyan";
  24.             // stoyan.age = 52;
  25.  
  26.             // 2. Getters Setters
  27.             // stoyan.SetName("Stoyan");
  28.             // stoyan.SetAge(52);
  29.  
  30.             // Console.WriteLine("My name is {0}. I am {1} years old!", stoyan.GetName(), stoyan.GetAge());
  31.            
  32.             // 3. Properties
  33.             // stoyan.Name = "Stoyan";
  34.             // stoyan.Age = 52;
  35.             // Console.WriteLine("My name is {0}. I am {1} years old!", stoyan.Name, stoyan.Age);
  36.  
  37.             stoyan.IntroduceYourSelf();
  38.  
  39.             // counter++;
  40.             Person monika = new Person("Monika", 18, 12.3, "Ivan", "Petko");
  41.             // monika.Name = "Monika";
  42.             // monika.Age = 18;
  43.             // Console.WriteLine("My name is {0}. I am {1} years old!", monika.Name, monika.Age);
  44.             monika.IntroduceYourSelf();
  45.             // Console.WriteLine("The population in my Little Kingdom is {0}", counter);
  46.  
  47.             CreateAnother();
  48.  
  49.             Console.WriteLine("The population in my Little Kingdom is {0}", Person.population);
  50.  
  51.             Person.nationality = "German";
  52.             stoyan.IntroduceYourSelf();
  53.             monika.IntroduceYourSelf();
  54.  
  55.             Student student1 = new Student("Kircho", 24, 21321);
  56.             student1.IntroduceYourSelf();
  57.  
  58.             Athlete athlete = new Athlete("Krisi", 26, "Box");
  59.             athlete.IntroduceYourSelf();
  60.  
  61.             Executor exec1 = new Executor(student1);
  62.             exec1.MakeHimSpeak();
  63.  
  64.  
  65.             Console.Read();
  66.  
  67.         }
  68.  
  69.         public static void CreateAnother()
  70.         {
  71.             Person person1 = new Person();
  72.         }
  73.     }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement