wingman007

OOP4BeginnersPerson

Mar 25th, 2016
156
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 World1
  8. {
  9.     class Person : IIntorducable // : Object
  10.     {
  11.         // Auto
  12.         // public string Name { get; set; }
  13.         // public int Age { get; set; }
  14.  
  15.         protected string name;
  16.         protected int age;
  17.         private double temp;
  18.         private static int counter = 0;
  19.         private static string nationality = "Bulgarian";
  20.         private string[] friends = new string[5];
  21.         public const double PI = 3.14;
  22.         public readonly double onlyRead = 2.7;
  23.  
  24.         public string this[int i]
  25.         {
  26.             get { return friends[i]; }
  27.             set { friends[i] = value; }
  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.         static Person()
  43.         {
  44.             nationality = "Albanian";
  45.         }
  46.  
  47.         public string Name
  48.         {
  49.             get { return name; }
  50.             set { name = value; }
  51.         }
  52.  
  53.         public int Age
  54.         {
  55.             get { return age; }
  56.             set { age = value; }
  57.         }
  58.  
  59.         public double Balance
  60.         {
  61.             get { return age * 2.56; }
  62.         }
  63.        
  64.         public Person()
  65.             :this("Default", 0)
  66.         {
  67.             // this.name = "Default";
  68.             // this.age = 0;
  69.         }
  70.  
  71.         // Working horse
  72.         public Person(string name, int age, int temp = 0, params string[] friends)
  73.         {
  74.             // Name = name;
  75.             // Age = age;
  76.             int i = 0;
  77.             foreach(string friend in friends){
  78.                 this.friends[i] = friend;
  79.                 i++;
  80.             }
  81.             this.name = name;
  82.             this.age = age;
  83.             onlyRead = age * 5.4;
  84.             counter++;
  85.         }
  86.  
  87.         public Person(int age, string name)
  88.             :this(name, age)
  89.         {
  90.             // this.name = name;
  91.             // this.age = age;
  92.         }
  93.  
  94.         public virtual void IntroduceYourSelf()
  95.         {
  96.             Console.WriteLine("My name is {0}. I am {1} years old! I am {2}. OnlyRead = {3}",
  97.                 name, age, nationality, onlyRead);
  98.         }
  99.  
  100.         public static double CalculateNationalIncome()
  101.         {
  102.             return counter * 10000;
  103.         }
  104.  
  105.         /*
  106.         public string GetName()
  107.         {
  108.             return name;
  109.         }
  110.  
  111.         public void SetName(string name)
  112.         {
  113.             this.name = name;
  114.         }
  115.  
  116.         public int GetAge()
  117.         {
  118.             return age;
  119.         }
  120.  
  121.         public void SetAge(int age)
  122.         {
  123.             this.age = age;
  124.         }
  125.         */
  126.  
  127.     }
  128. }
Add Comment
Please, Sign In to add comment