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 World1
- {
- class Person : IIntorducable // : Object
- {
- // Auto
- // 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";
- private string[] friends = new string[5];
- public const double PI = 3.14;
- public readonly double onlyRead = 2.7;
- public string this[int i]
- {
- get { return friends[i]; }
- set { friends[i] = value; }
- }
- public static int Counter
- {
- get { return counter; }
- // private set { counter = value; }
- }
- public static string Nationality
- {
- get { return nationality; }
- set { nationality = value; }
- }
- static Person()
- {
- nationality = "Albanian";
- }
- public string Name
- {
- get { return name; }
- set { name = value; }
- }
- public int Age
- {
- get { return age; }
- set { age = value; }
- }
- public double Balance
- {
- get { return age * 2.56; }
- }
- public Person()
- :this("Default", 0)
- {
- // this.name = "Default";
- // this.age = 0;
- }
- // Working horse
- public Person(string name, int age, int temp = 0, params string[] friends)
- {
- // Name = name;
- // Age = age;
- int i = 0;
- foreach(string friend in friends){
- this.friends[i] = friend;
- i++;
- }
- this.name = name;
- this.age = age;
- onlyRead = age * 5.4;
- counter++;
- }
- public Person(int age, string name)
- :this(name, age)
- {
- // this.name = name;
- // this.age = age;
- }
- public virtual void IntroduceYourSelf()
- {
- Console.WriteLine("My name is {0}. I am {1} years old! I am {2}. OnlyRead = {3}",
- name, age, nationality, onlyRead);
- }
- public static double CalculateNationalIncome()
- {
- return counter * 10000;
- }
- /*
- 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