Adding the "this" parameter to the parameter creates an extension method. The extension method acts like an instance method, since you can call it on instances of the type of the first parameter in the extension method.
For example, the following is possible, since Map is marked as an extension method
Data.RecruitMent dv = ...; dv.Map();
source share