Search All Articles Submit your Website or Blog to A New Internet Library
Tuesday, January 13, 2009
Automatic Property (without backfield) in C# 3.0
In C# 3.0 (Shipped with Visual studio 2008) we have a new feature called Automatic Property through which we can declare a property with empty get and set accessors. The compilor CLR will take care of automatically generating backfield(private Variable ex:_Name) at runtime.
//Conventional Way
private string _Name;
public string Name
{
get { return _Name;}
set { _Name = value; }
}
//Automatic Property
public int Name
{
get;
set;
}
Any ways if you want to impliment your own filter logic you can always use Conventional way having back field.
Subscribe to:
Post Comments (Atom)
Also Read other Top Articles
- JSON Serialization in VS 2008
- Implementing Forms Authentication in Silverlight Application.
- Making GridView Rows or Individual Cells Clickable and Selectable.
- Enabling browser back button for GridView Paging and Sorting in Ajax 1.1 and 3.5 (using Visual Studio 2005/ Visual studio 2008)
- How to pass values from User Control to Page or calling Page methods from User Control.
- What is WCF?
- New features in C# 4.0
- C# to VB.NET and VB.NET to C# online free converter tools.


0 comments:
Post a Comment
Post your comments/questions/feedback for this Article.