Why can't you use the keyword 'this' in a static method in .Net?

后端 未结 7 1657
温柔的废话
温柔的废话 2020-11-27 06:46

I\'m trying to use the this keyword in a static method, but the compiler won\'t allow me to use it.

Why not?

7条回答
  •  甜味超标
    2020-11-27 07:00

    As an additional note, from a Static method, you can access or static members of that class. Making the example below valid and at times quite useful.

    public static void StaticMethod(Object o)
    {
         MyClass.StaticProperty = o;
    }
    

提交回复
热议问题