sealed (C# Reference)
The sealed modifier can be applied to classes, instance methods and properties. A sealed class cannot be inherited. A sealed method overrides a method in a base class, but itself cannot be overridden further in any derived class. When applied to a method or property, the sealed modifier must always be used with override (C# Reference).
Use the sealed modifier in a class declaration to prevent inheritance of the class, as in this example:
sealed class SealedClass
{
public int x;
public int y;
}
It is an error to use a sealed class as a base class or to use the abstract modifier with a sealed class.
Structs are implicitly sealed; therefore, they cannot be inherited.
For more information about inheritance, see Inheritance (C# Programming Guide).
For more information, see the following sections in the C# Language Specification:
-
10.1.1.2 Sealed classes
-
10.5.5 Sealed methods