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 World
- {
- class Person
- {
- // private string dfshgfgf;
- // Auto Properties
- // public string Name { get; set; }
- // public string Age { get; set; }
- private string name;
- private int age;
- private double temp;
- public string Name
- {
- get { return name; }
- set { name = value; }
- }
- public int Age
- {
- get { return age; }
- set { age = value; }
- }
- public double Balance
- {
- get { return 3.14 * age; }
- }
- public Person()
- :this("Default", 0)
- {
- // this.name = "Default";
- // this.age = 0;
- }
- // Working Horse
- public Person(string name, int age)
- {
- this.name = name;
- this.age = age;
- // Age = age;
- // Name = name;
- }
- public Person(int age, string name)
- :this(name, age)
- {
- // this.name = name;
- // this.age = age;
- }
- public void IntroduceYourSelf()
- {
- Console.WriteLine("My name is {0}. I am {1} years old.", name, age);
- }
- /*
- 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;
- }
- */
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement