I am reading msdn documentation for this keyword. They gave three usages for this
keyword as follows
- To qualify members hidden by similar names
- To pass an object as a parameter to other methods
- To declare indexers
and there is no word about the usage of this
during constructor chaining.
My question are :
- Why they missed out constructor chaining ?
- Is in some way that constructor chaining is an application of the above three usages that I am not aware of ?