Advertisement
wingman007

OOP2016FullTimeStaticElementsPerson

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