Why can\'t the keyword this be used in a static method? I am wondering why C# defines this constraint. What benefits can be gained by this constraint?
this
[
The keyword this refers to the instance of the object. In the static context there is not specific instance to reference.