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;
- using System.Threading.Tasks;
- namespace App2b
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("My constant is {0}", Human.PI);
- Console.WriteLine("My onlyRead has value = {0}", Human.onlyRead);
- // int counter = 0;
- Human person1 = new Human("Stoyan", 50);
- // Console.WriteLine(person1.onlyRead);
- // counter++;
- Human person2 = new Human(20, "Ivan", "Petko", "Nikol");
- // counter++;
- Human person3 = new Human();
- // counter++;
- // person1.onlyRead = 3.4;
- // Console.WriteLine("My name is {0}. I am {1} years old!", person1.Name, person1.Age);
- // Console.WriteLine("My name is {0}. I am {1} years old!", person2.Name, person2.Age);
- Human.Nationality = "German";
- person1.IntroduceYourSelf("verbous");
- person2.IntroduceYourSelf();
- Console.WriteLine(person2.GetFriendName(0));
- person3.IntroduceYourSelf();
- IncreasePopulation();
- Console.WriteLine("The population {0}", Human.counter);
- Console.WriteLine("National Income is {0}", Human.CalculateNationlIncome());
- Console.WriteLine("Hello World!");
- Console.Read();
- }
- public static void IncreasePopulation()
- {
- Human person1 = new Human("Petko", 15);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement