Auto Implemented Property in C#

  1. using System.IO;  
  2. using System;  
  3. class PropertyClass {  
  4.     public int MyValue // Auto Implemented Property  
  5.     {  
  6.         set;  
  7.         get;  
  8.     }  
  9.     class Auto Implemented Property {  
  10.         public static void Main(String[] arg) {  
  11.             PropertyClass propertyObject = new PropertyClass();  
  12.             int fieldValue;  
  13.             fieldValue = propertyObject.MyValue; //Get Field Value via Property's set Accessor  
  14.             Console.WriteLine("MyValue: " + fieldValue);  
  15.             propertyObject.MyValue = 100; //Set Field Value via Property's set Accessor  
  16.             fieldValue = propertyObject.MyValue;  
  17.             Console.WriteLine("MyValue: " + propertyObject.MyValue);  
  18.         }  
  19.     }  
  20. }  
Output

MyValue: 0
MyValue: 100