Advertisement
wingman007

OOP2bStaticElements

Mar 20th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.70 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 NameAge2b
  8. {
  9.     class Person
  10.     {
  11.         private string name;
  12.         private int age;
  13.         private static int counter=0;
  14.  
  15.  
  16.         public string Name
  17.         {
  18.             get { return name; }
  19.             set { name = value; }
  20.         }
  21.         public int Age
  22.         {
  23.             get { return age; }
  24.             set { age = value; }
  25.         }
  26.         public static int Counter
  27.         {
  28.             get { return counter; }
  29.             set { counter = value; }
  30.         }
  31.         public Person()
  32.         {
  33.             counter++;
  34.         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement