Sealed modifier helps performance.
The Sealed modifier prevents other classes from inheriting from it.
Aug 26, 2023
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.