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 World2a2b
- {
- class Person // : Object
- {
- // public string Name { get; set; }
- // public int Age { get; set; }
- protected string name;
- protected int age;
- private double temp;
- private static int counter = 0;
- private static string nationality = "Bulgarian";
- public const double PI = 3.14;
- public readonly double only4Read = 2.71;
- // public static string Nationality { get; set; }
- public static string Nationality
- {
- get { return nationality; }
- set { nationality = value; }
- }
- public static int Counter
- {
- get { return counter; }
- // private set { counter = value; }
- }
- 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; }
- }
- static Person()
- {
- Nationality = "Albanian";
- }
- 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;
- // Name = name;
- // Age = age;
- counter++;
- only4Read = 5.4 * age;
- }
- public Person(int age1, string name1)
- :this(name1, age1)
- {
- // this.name = name1;
- // this.age = age1;
- }
- public virtual void IntroduceYourSelf()
- {
- Console.WriteLine("My name is {0}. I am {1} years old. Nationality = {2}", name, age, Nationality);
- }
- public override string ToString()
- {
- // return base.ToString();
- return "My name is " + name + ". I am " + age + " years old. Nationality = " + Nationality;
- }
- public static double CalculateNationalIncome()
- {
- return (double)counter * 10000.0;
- }
- ~Person()
- {
- Console.WriteLine("I am a destructor");
- }
- /*
- 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;
- }
- */
- }
- }
Add Comment
Please, Sign In to add comment