wingman007

WOrld2a2bPersonDestructor

Apr 18th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.85 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 Person // : Object
  10.     {
  11. //        public string Name { get; set; }
  12. //        public int Age { get; set; }
  13.  
  14.         protected string name;
  15.         protected int age;
  16.         private double temp;
  17.         private static int counter = 0;
  18.         private static string nationality = "Bulgarian";
  19.         public const double PI = 3.14;
  20.         public readonly double only4Read = 2.71;
  21.  
  22.         // public static string Nationality { get; set; }
  23.  
  24.         public static string Nationality
  25.         {
  26.             get { return nationality; }
  27.             set { nationality = value; }
  28.         }
  29.         public static int Counter
  30.         {
  31.             get { return counter; }
  32.             // private set { counter = value; }
  33.         }
  34.         public string Name
  35.         {
  36.             get { return name; }
  37.             set { name = value; }
  38.         }
  39.  
  40.         public int Age
  41.         {
  42.             get { return age; }
  43.             set { age = value; }
  44.         }
  45.  
  46.         public double Balance
  47.         {
  48.             get { return 3.14 * age; }
  49.         }
  50.  
  51.         static Person()
  52.         {
  53.             Nationality = "Albanian";
  54.         }
  55.  
  56.         public Person()
  57.             : this("Default", 0)
  58.         {
  59.             // this.name ="Default";
  60.             // this.age = 0;
  61.  
  62.         }
  63.  
  64.         // Working Horse
  65.         public Person(string name, int age)
  66.         {
  67.             this.name = name;
  68.             this.age = age;
  69.             // Name = name;
  70.             // Age = age;
  71.             counter++;
  72.             only4Read = 5.4 * age;
  73.         }
  74.  
  75.         public Person(int age1, string name1)
  76.             :this(name1, age1)
  77.         {
  78.             // this.name = name1;
  79.             // this.age = age1;
  80.         }
  81.  
  82.         public virtual void IntroduceYourSelf()
  83.         {
  84.             Console.WriteLine("My name is {0}. I am {1} years old. Nationality = {2}", name, age, Nationality);
  85.         }
  86.  
  87.         public override string ToString()
  88.         {
  89.             // return base.ToString();
  90.             return "My name is " + name + ". I am " + age + " years old. Nationality = " + Nationality;
  91.         }
  92.         public static double CalculateNationalIncome()
  93.         {
  94.             return (double)counter * 10000.0;
  95.         }
  96.  
  97.         ~Person()
  98.         {
  99.             Console.WriteLine("I am a destructor");
  100.         }
  101.  
  102.         /*
  103.         public string GetName()
  104.         {
  105.             return name;
  106.         }
  107.  
  108.         public void SetName(string name)
  109.         {
  110.             this.name = name;
  111.         }
  112.  
  113.         public int GetAge()
  114.         {
  115.             return age;
  116.         }
  117.  
  118.         public void SetAge(int age)
  119.         {
  120.             this.age = age;
  121.         }
  122.         */
  123.     }
  124. }
Add Comment
Please, Sign In to add comment