Sealed modifier helps performance.

The Sealed modifier prevents other classes from inheriting from it.

Vitor Gomes
Aug 26, 2023

You can also use the sealed modifier on a method or property that overrides a virtual method or property in a base class. This enables you to allow classes to derive from your class and prevent them from overriding specific virtual methods or properties.

Other than that, the Sealed modifier helps the projects' performance.

--

--