Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace World1b
- {
- class Person
- {
- private string name;
- // private string _sdhgfshfg;
- private int age;
- private int temp;
- private string[] friends = new string[5];
- public string Name
- {
- get { return name; }
- set { name = value; }
- }
- public int Age
- {
- get { return age; }
- set { age = value; }
- }
- public string this[int i] {
- get { return friends[i]; }
- set { friends[i] = value; }
- }
- public Person()
- : this("Default", 0)
- {
- // Name = "Default";
- // Age = 0;
- }
- public Person(string name, int age, double balance = 0, params string[] friends)
- {
- // this.name = name;
- Name = name;
- Age = age;
- int i = 0;
- foreach (string friend in friends) {
- this.friends[i] = friend; // friends[i];
- i++;
- }
- }
- public void IntroduceYourSelf()
- {
- Console.WriteLine("My name is {0}, I am {1} years old!", name, age);
- }
- // public string Name { get; set; }
- /*
- public string GetName()
- {
- return name;
- }
- public void SetName(string name)
- {
- this.name = name;
- }
- public int GetAge()
- {
- return age;
- }
- public void SetAge(int age)
- {
- this.age = age;
- }
- public double GetBalance()
- {
- return age * 34;
- }
- */
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement