Compiler Error CS0503
The abstract method 'method' cannot be marked virtual
It is redundant to mark a member method as both abstract and virtual because abstract implies virtual.
The following sample generates CS0503:
C#
// CS0503.cs
namespace x
{
abstract public class clx
{
abstract virtual public void f(); // CS0503
}
}
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: