How to use Auto Implemented Properties in C# ?

Want to know what is Auto Implemented properties in C# and how to use it in your .NET application?. This blog post explains more about it.

If we want to create a class with a bunch of public properties , we generally do it by storing the value of the properties in private field.

Eg :

Class Student

{

           private int id;
           public int ID
           {
               get
               {
                  return id;
                }
               set
               {
                  id=value;
               }
           }

}

If this is all we need it , then in C# 3.0 and above , we can do the same more compactly and simpler . This feature is also introduced recently in VB 10.0 .

Eg :

 public int ID {get;set; }

What is the use of auto implemented properties in C# ?

We do not require private field to be defined explicitly. This is all done implicitly through this syntax. When we declare a Auto Implemented property, the compiler automatically creates a private field that is available only to the get and set accessors of the property.

There is another shortcut to achieve the same using code snippets.

type prop and hit tab twice

The above uses the auto implemented properties syntax , so that we can go through and create / customize the property .

If we dont want public set and public get and if we want to make this a readonly property, we can type in

propg and hit tab twice.

The result of the above would be something similar , here i have changed the datatype and Name of the property

 public int ID {	get; private set;}

We can see that a private setter is created .

Auto Implemented properties are a nice little feature in c# 3.0 and above versions that allows us to easily create accessors ( getters and setters ) for your private fields .

We can use the auto-implemented properties whenever we define a properties that does not have special logic inside the getter or setter.

    3 Comments

  1. Mark Spizer
    May 2, 2010
    Reply

    great post as usual!

  2. Rockon
    May 26, 2010
    Reply

    graet

  3. Chester Beard
    May 30, 2010
    Reply

    You’ve done it once again! Incredible read!

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

Do you want to hide the start page in Microsoft Visual Studio 2012 within few simple steps? Here we go....
DataTip is a feature in Visual Studio that provides the users an easy way to view information about variables used...
Today, when I was trying to install the Team Foundation Server (TFS) Power Tools 2013, I received an error “The...