In this chapter, you will learn how to define a dynamic .NET property member.
About Dynamic .NET Properties
A dynamic .NET property is a named value, backed by a defined dynamic .NET field, that has dynamic .NET methods associated with it that are generically named getter and setter methods. But a dynamic .NET property can also have more dynamic .NET methods associated with it; these methods are generically called other methods.
The terms getter, setter, and other methods come from the MSIL .property directive that is used in the metadata for defining them. ...