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;
- namespace OOP4
- {
- class Human : Introducable
- {
- protected string name;
- protected int age;
- private int temp;
- public static string nationality = "Bulgarian";
- public static int population = 0;
- public Human(string name, int age)
- {
- this.name = name;
- this.age = age;
- population++;
- }
- public string Name
- {
- get { return name; }
- set { name = value; }
- }
- public int Age
- {
- get { return age; }
- set { age = value; }
- }
- public double Prop
- {
- get { return 2*3.14; }
- }
- public virtual void IntroduceYourSelf()
- {
- Console.WriteLine("I am a human! My name is {0} and I am {1} years old! I am {2}.", name, age, nationality);
- }
- public static int DoSomethingImportant(int par1, int par2)
- {
- return par1 + par2;
- }
- private void SecretToughts()
- {
- //..
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement