Advertisement
wingman007

OOPClassesObjects2aPerson

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