What are properties?
Technically, properties are CLR "aliases." They are exposed as standard methods, and any compiler that consumes them simply transforms the user's code into the proper function calls. Similarly, any compiler that wants to author CLR properties just needs to follow the naming convention rules, and provide the necessary metadata entries.
The property appears as a red triangle in ildasm. In the shot below, note that the func
read more »
Be the first to post a Comment!