If there is the following code in a class, are get and set methods associated to the variable? How can I access get and set with an instance of the class?
public string Something { get; set; }
|
|
This syntax comes with .Net Framework 3.5 (automatic-property) It's like :
To access to this variable (supposed to be in a MyClass class) :
|
|||
|
|
|
This is essentially a compiler trick. When you compile the code the compiler will generate a hidden field and the necessary code to return and set the field in the get and set. You would access this property just like you would access any other property. |
|||
|
|
|
This is an auto-property, which creates a backing field in the compiler, which you don't need to write code for. get:
set:
|
|||
|
|
|
||||
|
|
|
A backing variable complete with getter and setter methods(*) are created for you by the compiler, but you would not see them in your standard code. You would simply access the property directly.
*These methods are created for properties rather they are auto-implemented or not. The compiler-generated backing variable is added to the mix in the case of an auto-implemented property. |
|||||
|
|
This is like the code below, but many fewer keystrokes :-)
|
|||||||||
|
|
The compiler turns this:
Into something like this (in IL, converted to C# for your convenience):
Also, the compiler turns these lines:
Into this:
So you see, it's all method calls underneath (just like in Java), but it's really sweet to have the property syntax in C#. But if you try to call these methods directly, you get an error. |
|||
|
|