Answer Posted / kanchan kora
A class which restricts inheritance for security region is
called Sealed class.
Sealed class is the last class in hierarchy.
Sealed class can be a derived class but can't be a base class.
To access the members of sealed class we should create the
instance object.
Advantages of sealed class is it restrict the third party
vendor for developing new software by inheriting from our logic.
| Is This Answer Correct ? | 50 Yes | 9 No |
Post New Answer View All Answers
Is the following code legal?
What is the difference between method overriding and method overloading?
What is class method?
How more than one version of an assembly can keep in same place?
What is the difference between C# 3.5 and C# 4.0?
Can we inherit two classes in c#?
What is response redirect in c#?
Is system a class in c#?
What are the advantages of using partial classes?
What are the steps for creating clr trigger
What is the difference between paramaterized constructor and copy constructor?
What is extension method in c sharp?
Is arraylist type safe in c#?
What is asenumerable in c#?
What is lock statement in C#?