How can we main a Class as base class,i.e not inherited
further?{please Dont tell using Sealed class,any other way}

Answers were Sorted based on User's Feedback



How can we main a Class as base class,i.e not inherited further?{please Dont tell using Sealed cla..

Answer / suman k dey

Instead of sealed we can use static class.

Is This Answer Correct ?    17 Yes 3 No

How can we main a Class as base class,i.e not inherited further?{please Dont tell using Sealed cla..

Answer / vinay tiwari

by making private cnstructor

Is This Answer Correct ?    10 Yes 2 No

How can we main a Class as base class,i.e not inherited further?{please Dont tell using Sealed cla..

Answer / palash

Very Simple....
Create one private Constructor inside the class then we are
not create any object of that class.

Is This Answer Correct ?    2 Yes 0 No

How can we main a Class as base class,i.e not inherited further?{please Dont tell using Sealed cla..

Answer / jay

final is an identifier valid in java, c# has sealed.
while its true that marking base CTOR as private makes
deriving from that class impossible, you SHOULD use sealed
for that purpose.
Reason is that "sealed" allows for some neat compiler
optimization.

Is This Answer Correct ?    1 Yes 2 No

How can we main a Class as base class,i.e not inherited further?{please Dont tell using Sealed cla..

Answer / arun

using final keyword....i am not sure whether this works in
c# or not...

Is This Answer Correct ?    0 Yes 4 No

How can we main a Class as base class,i.e not inherited further?{please Dont tell using Sealed cla..

Answer / saurabh hoonka

use Private access modifier

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More C Sharp Interview Questions

Can an abstract class inherit from another abstract class c#?

0 Answers  


Can a class have multiple constructors c#?

0 Answers  


What is a ienumerator?

0 Answers  


What is a strong name in c#?

0 Answers  


Can you declare a class or a struct as constant?

0 Answers  






What is c# most used for?

0 Answers  


What is difference between array and arraylist c#?

0 Answers  


all information

1 Answers  


Can constructor be protected in c#?

0 Answers  


What is difference between class and abstract class in c#?

0 Answers  


Why we use get set property in c#?

0 Answers  


What is gac? How to put assembly in gac?

0 Answers  


Categories