Wats the diff between sealed class and private class in
inheritance
Answer Posted / vishal
Sealed Class:
When applied to a class, the sealed modifier prevents other
classes from inheriting from it. In the following example,
class B inherits from class A, but no class can inherit
from class B.
class A {}
sealed class B : A {}
You can also use the sealed modifier on a method or
property that overrides a virtual method or property in a
base class. This enables you to allow classes to derive
from your class and prevent them from overriding specific
virtual methods or properties.
Private Class :
Classes and structs that are not nested within other
classes or structs can be either public or internal. A type
declared as public is accessible by any other type. A type
declared as internal is only accessible by types within the
same assembly. Classes and structs are declared as internal
by default unless the keyword public is added to the class
definition. And yes, a class cannot be private unless of
course if it a nested class.
| Is This Answer Correct ? | 29 Yes | 6 No |
Post New Answer View All Answers
Does c# support templates?
Which is better javascript or c#?
What is delegate in c#?
What are the return types in c#?
Why do I get a syntax error when trying to declare a variable called checked?
Helo , Help Me , Help Me About : C# Windows Application - Network How To Manage IP Client's Accessiblity To The Internet Share concise Substitute , Minor ISA Server
Explain inheritance in c#?
what is the syntax to inherit from a class in c#?
Describe the overview of clr integration.
Define multicast c# delegate?
What is function and method in c#?
Is Multiple-inheritance supported by c#?
Explain the difference between private and shared assembly?
What is using keyword?
If I want to override a method one of class A and in class b then how do you declare?