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 World2b
- {
- class Program
- {
- static void Main(string[] args)
- {
- // 1. fields
- Person stoyan = new Person();
- // stoyan.name = "Stoyan";
- // stoyan.age = 52;
- // Console.WriteLine("My name is {0}. I am {1} years old.", stoyan.name, stoyan.age);
- // 2. with getters and setters
- // 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;
- // 4. Auto properties
- // Console.WriteLine("My name is {0}. I am {1} years old.", stoyan.Name, stoyan.Age);
- stoyan.IntroduceYourSelf();
- Person vanya = new Person("Vanya", 18, 123.12, "Stoyan", "Petko");
- // vanya.Name = "Vanya";
- // vanya.Age = 18;
- // Console.WriteLine("My name is {0}. I am {1} years old. And my best friend is {2}", vanya.Name, vanya.Age, vanya[0]);
- vanya.IntroduceYourSelf();
- /* Procedural
- string[] names = new string[120];
- int ages = 18;
- string person2Name = "Stoyan";
- int person2Age = 18;
- */
- }
- }
- }
Add Comment
Please, Sign In to add comment