Advertisement
wingman007

C#_OOP_433_Program.cs

Mar 20th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.33 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 Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             Human stoyan = new Human("Stoyan", 51);
  13.             Human ivan = new Human("Ivan", 16);
  14.  
  15.             Student student1 = new Student("Nina", 18, 1234);
  16.  
  17.             Athlete athlete1 = new Athlete("Ilian", 18, "Futbol");
  18.  
  19.             // stoyan.Name = "Stoyan";
  20.             // stoyan.Age = 51;
  21.  
  22.             // ivan.Name = "Ivan";
  23.             // ivan.Age = 16;
  24.  
  25.             // Console.WriteLine("I am a human! My name is {0}. And I am {1} years old!", stoyan.Name, stoyan.Age);
  26.             // Console.WriteLine("I am a human! My name is {0}. And I am {1} years old!", ivan.Name, ivan.Age);
  27.  
  28.             Human.nationality = "German";
  29.  
  30.             stoyan.IntroduceYourSelf();
  31.             ivan.IntroduceYourSelf();
  32.             student1.IntroduceYourSelf();
  33.  
  34.  
  35.             DoSomething();
  36.  
  37.             Console.WriteLine(Human.DoSomethingImportant(2,2));
  38.  
  39.             Console.WriteLine("The population/limit = {0}", Human.population);
  40.             Console.WriteLine("Hello");
  41.             Console.Read();
  42.         }
  43.  
  44.         public static void DoSomething()
  45.         {
  46.             Human petko = new Human("Petko", 12);
  47.         }
  48.     }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement