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
Why is main static in c#?
Why do we use parameters in c#?
Is it possible to have different access modifiers on the get/set methods of a property?
How to parse a date time string?
While debugging a C# application can you change the value of a variable?
What is primitive types in c#?
What is static and use of it?
What is the meaning of int parse in c#?
What is arraylist?
How to sort an int array in c#?
What is int32 maxvalue?
How does bitwise xor work?
Where value types are stored in c#?
If you define a user defined data type by using the struct keyword, is it a value type or reference type?
What is namespace in oop?