I saw something like the following somewhere, and was wondering what it meant. I know they are getters and setters, but want to know why the string Type is defined like this. Thanks for helping me.
public string Type { get; set; }
|
I saw something like the following somewhere, and was wondering what it meant. I know they are getters and setters, but want to know why the string Type is defined like this. Thanks for helping me.
| |||
|
feedback
|
|
Those are Auto-Implemented Properties (Auto Properties for short). The compiler will auto-generate the equivalent of the following simple implementation:
| |||
|
feedback
|
|
That is an auto-property and it is the shorthand notation for this:
| |||||||||||
feedback
|
|
Its a automatically backed property, basically equivalent to
| |||
|
feedback
|
|
These are called auto properties. http://msdn.microsoft.com/en-us/library/bb384054.aspx Functionally (and in terms of the compiled IL), they are the same as properties with backing fields. | |||||||||||
feedback
|
|
This means that the compiler defines a backing field at runtime. This is the syntax for auto implemented properties. More Information: Auto-Implemented Properties | |||
|
feedback
|
Is no different then doing
| |||
|
feedback
|
"Type", the .NET type of which isSystem.string. There's nothing more to it. – Jon Jul 15 '11 at 15:05