wingman007

OOPPrinciplesStatic1bPerson

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