Advertisement
wingman007

OOP2016FullTimePerson

Apr 6th, 2016
638
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.79 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.     class Person
  10.     {
  11.         // private string dfshgfgf;
  12.         // Auto Properties
  13.         // public string Name { get; set; }
  14.         // public string Age { get; set; }
  15.        
  16.         private string name;
  17.         private int age;
  18.         private double temp;
  19.  
  20.         public string Name
  21.         {
  22.             get { return name; }
  23.             set { name = value; }
  24.         }
  25.  
  26.         public int Age
  27.         {
  28.             get { return age; }
  29.             set { age = value; }
  30.         }
  31.        
  32.         public double Balance
  33.         {
  34.             get { return 3.14 * age; }
  35.         }
  36.        
  37.         public Person()
  38.             :this("Default", 0)
  39.         {
  40.             // this.name = "Default";
  41.             // this.age = 0;
  42.         }
  43.        
  44.         // Working Horse
  45.         public Person(string name, int age)
  46.         {
  47.             this.name = name;
  48.             this.age = age;
  49.             // Age = age;
  50.             // Name = name;
  51.         }
  52.  
  53.         public Person(int age, string name)
  54.             :this(name, age)
  55.         {
  56.             // this.name = name;
  57.             // this.age = age;
  58.         }
  59.  
  60.         public void IntroduceYourSelf()
  61.         {
  62.             Console.WriteLine("My name is {0}. I am {1} years old.", name, age);
  63.         }
  64.  
  65.         /*
  66.         public string GetName()
  67.         {
  68.             return name;
  69.         }
  70.  
  71.         public void SetName(string name)
  72.         {
  73.             this.name = name;
  74.         }
  75.  
  76.         public int GetAge()
  77.         {
  78.             return age;
  79.         }
  80.  
  81.         public void SetAge(int age)
  82.         {
  83.             this.age = age;
  84.         }
  85.         */
  86.     }
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement