|
Auto-implemented properties are a time saving feature that is new in Visual Basic 2010 - a short-cut for creating class properties.
Auto-implemented properties enable you to declare a class property in a way that leaves it up to Visual Studio to create a private backing field and the Get and Set parts of the property for you.
For example, when you type the following into the Visual Basic 2010 code editor:
Property CustomerId() As Integer
...
|