0 votes
in C Sharp by
Explain sealed class in C#?

1 Answer

0 votes
by

Sealed class is used to prevent the class from being inherited from other classes. So “sealed” modifier also can be used with methods to avoid the methods to override in the child classes.

...