Advertisement
wingman007

World2a2bProgramGarbageCollector

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