Advertisement
wingman007

OOPPrinciplesStatic2аProgram

Mar 19th, 2016
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.38 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 World2a
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             // 1. fields
  14.             // 2. setter and getter
  15.             //Person stoyan = new Person();
  16.             //stoyan.SetName("Stoyan");
  17.             //stoyan.SetAge(52);
  18.             //Console.WriteLine("My name is {0}. I am {1} years old!", stoyan.GetName(), stoyan.GetAge());
  19.             // 3. Properties
  20.             // 4. Auto Properties
  21.             // int counter = 0;
  22.  
  23.             // counter++;
  24.             Person stoyan = new Person();
  25.             // stoyan.Name = "Stoyan";
  26.             // stoyan.Age = 52;
  27.             // Console.WriteLine("My name is {0}. I am {1} years old! And my balance is {2}", stoyan.Name, stoyan.Age, stoyan.Balance);
  28.             stoyan.IntroduceYourSelf();
  29.  
  30.             //Person rosen = new Person();
  31.             //rosen.name = "Stoyan";
  32.             //rosen.age = 26;
  33.             //Console.WriteLine("My name is {0}. I am {1} years old!", rosen.name, rosen.age);
  34.  
  35.             // counter++;
  36.             Person rosen = new Person("Rosen", 26, 123.45, "Stoyan", "Petko");
  37.             // Console.WriteLine("My name is {0}. I am {1} years old! And my balance is {2}.", rosen.Name, rosen.Age, rosen.Balance);
  38.             Console.WriteLine("And my first friend is {0}", rosen[1]);
  39.             rosen.IntroduceYourSelf();
  40.  
  41.             DoSomethingElse();
  42.             Console.WriteLine("The population is {0}", Person.Counter);
  43.  
  44.             Person.Nationality = "German";
  45.  
  46.             stoyan.IntroduceYourSelf();
  47.             rosen.IntroduceYourSelf();
  48.  
  49.             Console.WriteLine("Only for reading {0}", Person.onlyRead);
  50.             // stoyan.onlyRead = 6.7;
  51.             Console.WriteLine("National Income is {0}", Person.GetNationalIncome());
  52.  
  53.             Student student = new Student("Kircho", 26, "2314ddasd");
  54.             student.IntroduceYourSelf();
  55.  
  56.             Athlete athlete = new Athlete("Krisi", 27, "Box");
  57.             athlete.IntroduceYourSelf();
  58.  
  59.             Executron exec1 = new Executron(student);
  60.             exec1.MakeItSpeak();
  61.         }
  62.  
  63.         static void DoSomethingElse()
  64.         {
  65.             int counter = 0;
  66.             counter++;
  67.             Person person1 = new Person();
  68.         }
  69.     }
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement