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 OOP1
- {
- class Program
- {
- static void Main(string[] args)
- {
- Human stoyan = new Human("Stoyan", 50);
- Human ivan = new Human("Ivan", 16);
- Human smith = new Human("Smith", 35);
- // stoyan.Name = "Stoyan";
- // stoyan.Age = 50;
- // ivan.Name = "Ivan";
- // ivan.Age = 16;
- // smith.Name = "Smith";
- // smith.Age = 35;
- // Console.WriteLine(stoyan.name);
- // Console.WriteLine(ivan.name);
- // Console.WriteLine(smith.name);
- stoyan.introduceYourSelf();
- Human.SetNationality("German");
- ivan.introduceYourSelf();
- smith.introduceYourSelf();
- Program.DoSomething();
- Console.WriteLine("My limit/population is {0}", Human.counter);
- Console.Read();
- }
- public static void DoSomething()
- {
- Human petko = new Human("Petko", 51);
- Human drago = new Human("Drago", 12);
- }
- public static int MyStatic(int par1, int par2)
- {
- return par1 * par2;
- }
- public static double CalculateCircumference(double r)
- {
- return 2 * r * 3.14;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement