I see this quiet often in C# documentation. But what does it do?
public class Car
{
public Name { get; set; }
}
|
I see this quiet often in C# documentation. But what does it do?
|
||||
|
|
|
It is shorthand for:
The compiler generates the member variable. This is called an automatic property. |
|||||||||||||
|
|
It's an automatic read-write property. It's a C# 3.0 addition. Something like:
except that you can't directly access the backing field. |
|||
|
|
|
In simple terms they are referred as property accessors. Their implementation can be explained as below 1.get{ return name} The code block in the get accessor is executed when the property is Read. 2.set{name = value} The code block in the set accessor is executed when the property is Assigned a new value. Eg.(Assuming you are using C#)
The get accessor is invoked to Read the value of property i.e the compiler tries to read the value of string 'name'. 2.When you Assign a value(using an argument) to the 'Name' property as below
The set accessor Assigns the value 'Stack" to the 'Name property i.e 'Stack' is stored in the string 'name'. Ouput:
|
|||
|
|
|
It is the equivilent of doing:
Except you don't have access to the private variable while inside the class. |
|||
|
|
|
It's called an Auto-Implemented Property and is new to C# 3.0. It's a cleaner syntax when your access to the property doesn't need any special behavior or validation. It's similar in function to:
So it saves a fair amount of code, but leaves you the option later to modify the accessor logic if behavior or rules need to change. |
|||
|
|
|
|||
|
|