C# Error CS0621 – ‘{0}’: virtual or abstract members cannot be private

C# Error

CS0621 – ‘{0}’: virtual or abstract members cannot be private

Reason for the Error & Solution

‘member’ : virtual or abstract members cannot be private

Private virtual or abstract members are not allowed.

The following sample generates CS0621:

// CS0621.cs  
abstract class MyClass  
{  
   private virtual void DoNothing1()   // CS0621  
   {  
   }  
  
   private abstract void DoNothing2();   // CS0621  
  
   public static void Main()  
   {  
   }  
}  

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...