Compiler Error CS0441
'class': a class cannot be both static and sealed
This error occurs when you declare a class that is both static and sealed. Static classes are inherently sealed, so the sealed modifier is not necessary. To resolve, use one modifier only.
The following example generates CS0441:
C#
// CS0441.cs
sealed static class MyClass { } // CS0441
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: