wingman007

OOP2016FullTime3PrinciplesPerson

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