Advertisement
wingman007

C#_OOP_Human

Mar 18th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.08 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOP1
  7. {
  8.     class Human
  9.     {
  10.         private string name;
  11.         private int age;
  12.         private double temp;
  13.  
  14.         public const double GOLDEN = 2.71;
  15.  
  16.         public static int counter = 0;
  17.  
  18.         private static string nationality = "Bulgarian";
  19.  
  20.         public string Name
  21.         {
  22.             get { return name;}
  23.             set { this.name = value;}
  24.         }
  25.  
  26.         public int Age
  27.         {
  28.             get { return age; }
  29.             set { this.age = value; }
  30.         }
  31.  
  32.         public Human(string name, int age)
  33.         {
  34.             this.name = name;
  35.             this.age = age;
  36.             counter += 1;
  37.         }
  38.  
  39.         public void introduceYourSelf()
  40.         {
  41.             Console.WriteLine("My name is {0} and I am {1} years old! I am {2}! And I knwo the Golden = {3}", name, age, nationality, Human.GOLDEN);
  42.         }
  43.  
  44.         public static void SetNationality(string nat)
  45.         {
  46.             nationality = nat;
  47.         }
  48.     }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement