Compiler Error CS0112

A static member 'function' cannot be marked as override, virtual or abstract

Any method declaration that uses the override, virtual, or abstract keyword cannot also use the static keyword.

For more information, see Methods (C# Programming Guide).

The following sample generates CS0112:

// CS0112.cs
namespace MyNamespace
{
   abstract public class MyClass
   {
      public abstract void MyMethod();
   }
   public class MyClass2 : MyClass
   {
      override public static void MyMethod()   // CS0112, remove static keyword
      {
      }
      public static int Main()
      {
         return 0;
      }
   }
}