Compiler Error CS0621
'member' : virtual or abstract members cannot be private
Private virtual or abstract members are not allowed.
The following sample generates CS0621:
C#
// CS0621.cs
abstract class MyClass
{
private virtual void DoNothing1() // CS0621
{
}
private abstract void DoNothing2(); // CS0621
public static void Main()
{
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: