Advertisement
wingman007

OOPClassesObjects2bPerson

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