Advertisement
wingman007

C#_OOP_433_Human.cs

Mar 20th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.21 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOP4
  7. {
  8.     class Human : Introducable
  9.     {
  10.         protected string name;
  11.         protected int age;
  12.         private int temp;
  13.  
  14.         public static string nationality = "Bulgarian";
  15.  
  16.         public static int population = 0;
  17.  
  18.         public Human(string name, int age)
  19.         {
  20.             this.name = name;
  21.             this.age = age;
  22.             population++;
  23.         }
  24.  
  25.         public string Name
  26.         {
  27.             get { return name; }
  28.             set { name = value; }
  29.         }
  30.  
  31.         public int Age
  32.         {
  33.             get { return age; }
  34.             set { age = value; }
  35.         }
  36.  
  37.         public double Prop
  38.         {
  39.             get { return 2*3.14; }
  40.         }
  41.  
  42.         public virtual void IntroduceYourSelf()
  43.         {
  44.             Console.WriteLine("I am a human! My name is {0} and I am {1} years old! I am {2}.", name, age, nationality);
  45.         }
  46.  
  47.         public static int DoSomethingImportant(int par1, int par2)
  48.         {
  49.             return par1 + par2;
  50.         }
  51.  
  52.         private void SecretToughts()
  53.         {
  54.        
  55.             //..
  56.         }
  57.     }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement