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.

The following sample generates CS0112:

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