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 World1b
- {
- class Program
- {
- static void Main(string[] args)
- {
- Person stoyan = new Person(); // "Stoyan", 52
- // 1. fields
- // stoyan.name = "Stoyan";
- // stoyan.age = 52;
- // Console.WriteLine("My name is {0}, I am {1} years old!", stoyan.name, stoyan.age);
- // 2. methods getter and setter
- // stoyan.SetName("Stoyan");
- // stoyan.SetAge(52);
- // Console.WriteLine("My name is {0}, I am {1} years old!", stoyan.GetName(), stoyan.GetAge());
- // 3. properties
- // stoyan.Name = "Stoyan";
- // stoyan.Age = 52;
- // Console.WriteLine("My name is {0}, I am {1} years old!", stoyan.Name, stoyan.Age);
- stoyan.IntroduceYourSelf();
- Person vasko = new Person("Vasko", 18, 123.23, "Stoyan", "Ivan");
- // 1. fiealds
- // vasko.name = "Vasko";
- // vasko.age = 18;
- // Console.WriteLine("My name is {0}, I am {1} years old!", vasko.name, vasko.age);
- // Console.WriteLine("My name is {0}, I am {1} years old!", vasko.Name, vasko.Age);
- vasko.IntroduceYourSelf();
- Console.WriteLine("Friend 0 = {0}", vasko[0]);
- Elevator elevator1 = new Elevator(17);
- elevator1.GoUp(10);
- Console.WriteLine("The elevator1 is on floor {0}", elevator1.GetCurrentFloor());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement