Advertisement
wingman007

OOPClassesObjectsPerson2

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