the sealed keyword is used to prevent inheritance
Sealed is keyword if we want stop inheritance then we use Seale before class & for stopping ovrriding we use Sealed before method
The sealed modifier is used to prevent derivation from a class. An error occurs if a sealed class is specified as the base class of another class.
We know that sealed keyword teaches me security related information. OK so whenever we talk about sealed , sealed is a keyword in Oops, which is used for some particular behavior that means when we want to a method that is work for only for me i.e. particular class and we want that function can't use by the other class in that case we go for function or class mark as a sealed. sealed is a keyword which is used to seal a class or function and prevent it to get inherited from any other classes. In other words, a sealed class cannot be inherited. similarly function can't be used by the other class.
Nice explanation Dheeraj Kumar Jha.
Sealed types cannot be inherited & are concrete. Sealed modifiers can also be applied to instance methods, properties, events & indexes. It can't be applied to static members.Sealed members are allowed in sealed and non-sealed classes.