wingman007

OOPPrinciplesStatic1aPerson

Mar 18th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.03 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 World1a
  8. {
  9.     class Person : IIntroducable
  10.     {
  11.         protected string name; // Member variable, instance variable, field
  12.  
  13.         public string[] friends = new string[3];
  14.  
  15.         // private string _ewgsjhfgsjhfg1436543;
  16.  
  17.         protected int age;
  18.  
  19.         public static int population = 0;
  20.         public static string nationality = "Bulgarian";
  21.  
  22.         public Person()
  23.         :this("Default", 0)
  24.         {
  25.             // Name = "Default";
  26.             // Age = 0;
  27.         }
  28.  
  29.         // Working Horse
  30.         public Person(string name, int age = 0, double balance = 1.2, params string[] optional)
  31.         {
  32.             // this.name = name;
  33.             // this.age = age;
  34.             Name = name;
  35.             Age = age;
  36.             int i = 0;
  37.             foreach (string friend in optional)
  38.             {
  39.                 friends[i] = friend;
  40.                 i++;
  41.             }
  42.             population++;
  43.         }
  44.  
  45.  
  46.  
  47.  
  48.         // public string Name { get; set; }
  49.  
  50.         public string Name
  51.         {
  52.             get { return name; }
  53.             set { name = value; }
  54.         }
  55.         public int Age
  56.         {
  57.             get { return age; }
  58.             set { age = value; }
  59.         }
  60.  
  61.         public double Balance
  62.         {
  63.             get { return Age * name.Length; }
  64.         }
  65.  
  66.  
  67.         /*
  68.         public string GetName()
  69.         {
  70.             return name;
  71.         }
  72.         public void SetName(string name)
  73.         {
  74.             this.name = name;
  75.         }
  76.  
  77.         public int GetAge()
  78.         {
  79.             return age;
  80.         }
  81.         public void SetAge(int age)
  82.         {
  83.             this.age = age;
  84.         }
  85.         */
  86.  
  87.         public virtual void IntroduceYourSelf()
  88.         {
  89.             Console.WriteLine("My name is {0}. I am {1} years old! My balne is {2}. My nationality is {3}", Name, Age, Balance, nationality);
  90.         }
  91.  
  92.     }
  93. }
Add Comment
Please, Sign In to add comment