Answer Posted / chauhan rakesh botad
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 ? | 2 Yes | 0 No |
Post New Answer View All Answers
How do I link two windows forms in c#?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
what is full assembly reference
What is array formula?
What is a statement c#?
what is difference between destruct or and garbage collection ?
What is the purpose of constructor in c#?
How does it work?
What are types in c#?
windows c# using datagridview in edit form sql server
What is Web.config?
How can it prevents DLL Hell assembly versioning in .NET?
What is the usage of transponders?
Is equal in c#?
What is datacontract in c#?