Advertisement
wingman007

C#_OOP_Program

Mar 18th, 2014
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.42 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 Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             Human stoyan = new Human("Stoyan", 50);
  13.             Human ivan = new Human("Ivan", 16);
  14.             Human smith = new Human("Smith", 35);
  15.  
  16.             // stoyan.Name = "Stoyan";
  17.             // stoyan.Age = 50;
  18.             // ivan.Name = "Ivan";
  19.             // ivan.Age = 16;
  20.             // smith.Name = "Smith";
  21.             // smith.Age = 35;
  22.  
  23.             // Console.WriteLine(stoyan.name);
  24.             // Console.WriteLine(ivan.name);
  25.             // Console.WriteLine(smith.name);
  26.  
  27.            
  28.  
  29.             stoyan.introduceYourSelf();
  30.  
  31.             Human.SetNationality("German");
  32.  
  33.             ivan.introduceYourSelf();
  34.             smith.introduceYourSelf();
  35.  
  36.             Program.DoSomething();
  37.  
  38.             Console.WriteLine("My limit/population is {0}", Human.counter);
  39.  
  40.             Console.Read();
  41.         }
  42.  
  43.         public static void DoSomething()
  44.         {
  45.             Human petko = new Human("Petko", 51);
  46.             Human drago = new Human("Drago", 12);
  47.         }
  48.  
  49.         public static int MyStatic(int par1, int par2)
  50.         {
  51.             return par1 * par2;
  52.         }
  53.  
  54.         public static double CalculateCircumference(double r)
  55.         {
  56.             return 2 * r * 3.14;
  57.         }
  58.     }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement