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 World
- {
- class Program
- {
- static void Main(string[] args)
- {
- // string name1 = "Alex";
- //int age1 = 20;
- // string[] names = new string[23];
- // string name2 = "Mariya";
- // int age2 = 18;
- Person person1 = new Person("Stoyan", 52); // "Stoyan", 52
- // 1. Fields
- // person1.name = "Stoyan";
- // person1.age = 52;
- // Console.WriteLine("My name is {0}. I am {1} years old.", person1.name, person1.age);
- // 2. Getter Setter
- // person1.SetName("Stoyan");
- // person1.SetAge(52);
- // Console.WriteLine("My name is {0}. I am {1} years old.", person1.GetName(), person1.GetAge());
- // 3. Properties
- // 4. Auto Properties
- // person1.Name = "Stoyan";
- // person1.Age = 52;
- // Console.WriteLine("My name is {0}. I am {1} years old.", person1.Name, person1.Age);
- person1.IntroduceYourSelf();
- Person person2 = new Person("Alex", 21);
- // person2.name = "Alex";
- // person2.age = 21;
- // Console.WriteLine("My name is {0}. I am {1} years old.", person1.name, person1.age);
- // person2.SetName("Alex");
- // person2.SetAge(21);
- // Console.WriteLine("My name is {0}. I am {1} years old.", person2.GetName(), person2.GetAge());
- // person2.Name = "Alex";
- // person2.Age = 21;
- // Console.WriteLine("My name is {0}. I am {1} years old.", person2.Name, person2.Age);
- person2.IntroduceYourSelf();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement