Advertisement
wingman007

OOP2016FullTimeProgram

Apr 6th, 2016
499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.80 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace World
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             // string name1 = "Alex";
  14.             //int age1 = 20;
  15.             // string[] names = new string[23];
  16.  
  17.             // string name2 = "Mariya";
  18.             // int age2 = 18;
  19.             Person person1 = new Person("Stoyan", 52); // "Stoyan", 52
  20.             // 1. Fields
  21.             // person1.name = "Stoyan";
  22.             // person1.age = 52;
  23.             // Console.WriteLine("My name is {0}. I am {1} years old.", person1.name, person1.age);
  24.             // 2. Getter Setter
  25.             // person1.SetName("Stoyan");
  26.             // person1.SetAge(52);
  27.             // Console.WriteLine("My name is {0}. I am {1} years old.", person1.GetName(), person1.GetAge());
  28.             // 3. Properties
  29.             // 4. Auto Properties
  30.             // person1.Name = "Stoyan";
  31.             // person1.Age = 52;
  32.             // Console.WriteLine("My name is {0}. I am {1} years old.", person1.Name, person1.Age);
  33.             person1.IntroduceYourSelf();
  34.  
  35.             Person person2 = new Person("Alex", 21);
  36.             // person2.name = "Alex";
  37.             // person2.age = 21;
  38.             // Console.WriteLine("My name is {0}. I am {1} years old.", person1.name, person1.age);
  39.             // person2.SetName("Alex");
  40.             // person2.SetAge(21);
  41.             // Console.WriteLine("My name is {0}. I am {1} years old.", person2.GetName(), person2.GetAge());
  42.             // person2.Name = "Alex";
  43.             // person2.Age = 21;
  44.             // Console.WriteLine("My name is {0}. I am {1} years old.", person2.Name, person2.Age);
  45.             person2.IntroduceYourSelf();
  46.         }
  47.     }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement