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 World2a
- {
- class Program
- {
- static void Main(string[] args)
- {
- // 1. fields
- // 2. setter and getter
- //Person stoyan = new Person();
- //stoyan.SetName("Stoyan");
- //stoyan.SetAge(52);
- //Console.WriteLine("My name is {0}. I am {1} years old!", stoyan.GetName(), stoyan.GetAge());
- // 3. Properties
- // 4. Auto Properties
- // int counter = 0;
- // counter++;
- Person stoyan = new Person();
- // stoyan.Name = "Stoyan";
- // stoyan.Age = 52;
- // Console.WriteLine("My name is {0}. I am {1} years old! And my balance is {2}", stoyan.Name, stoyan.Age, stoyan.Balance);
- stoyan.IntroduceYourSelf();
- //Person rosen = new Person();
- //rosen.name = "Stoyan";
- //rosen.age = 26;
- //Console.WriteLine("My name is {0}. I am {1} years old!", rosen.name, rosen.age);
- // counter++;
- Person rosen = new Person("Rosen", 26, 123.45, "Stoyan", "Petko");
- // Console.WriteLine("My name is {0}. I am {1} years old! And my balance is {2}.", rosen.Name, rosen.Age, rosen.Balance);
- Console.WriteLine("And my first friend is {0}", rosen[1]);
- rosen.IntroduceYourSelf();
- DoSomethingElse();
- Console.WriteLine("The population is {0}", Person.Counter);
- Person.Nationality = "German";
- stoyan.IntroduceYourSelf();
- rosen.IntroduceYourSelf();
- Console.WriteLine("Only for reading {0}", Person.onlyRead);
- // stoyan.onlyRead = 6.7;
- Console.WriteLine("National Income is {0}", Person.GetNationalIncome());
- Student student = new Student("Kircho", 26, "2314ddasd");
- student.IntroduceYourSelf();
- Athlete athlete = new Athlete("Krisi", 27, "Box");
- athlete.IntroduceYourSelf();
- Executron exec1 = new Executron(student);
- exec1.MakeItSpeak();
- }
- static void DoSomethingElse()
- {
- int counter = 0;
- counter++;
- Person person1 = new Person();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement