1) Sealed is a key word
2) Sealed classes are not inheritable

    sealed class A{}
    class B:A{} leads to an error message

3) When ever a class is providing the complete Functionality as per the requirement, then it is recommended to declare the class as sealed.


 grid view, asp dot net, dotnet Materials ,

what are the sealed classes in c# dot net

Object-Oriented Programming Sealed Classes in C# Dot net

 uses of sealed keyword in C# dot net