Advertisement
wingman007

OOP2016FullTimeStaticElementsProgram

Apr 12th, 2016
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.03 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.             CreateAnotherPerson();
  59.  
  60.             // Person.Counter = 456;
  61.  
  62.             //Console.WriteLine("The population of my little kingdom is {0}", counter);
  63.             //Console.WriteLine("The population of my little kingdom is {0}", people.Count);
  64.             Console.WriteLine("The population of my little kingdom is {0}", Person.Counter);
  65.             // person1.only4Read = 45.6;
  66.             Console.WriteLine("only 4 read = {0}", person2.only4Read);
  67.  
  68.             Person.Nationality = "German";
  69.  
  70.             person1.IntroduceYourSelf();
  71.             person2.IntroduceYourSelf();
  72.  
  73.             Console.WriteLine("National Income of my Little Kingdom is {0}",
  74.                 Person.CalculateNationalIncome());
  75.         }
  76.  
  77.         public static void CreateAnotherPerson()
  78.         {
  79.             Person person1 = new Person("Petko", 45);
  80.         }
  81.     }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement