wingman007

OOPPrinciplesStatic2аPerson

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