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 you create enumerated data types in C# ?

1 Answers  


what is CSharp

6 Answers  


How objects are stored in memory?

0 Answers  


What is the difference between const and readonly in c#.net?

0 Answers  


What is the difference between CONST and READONLY?

0 Answers   BirlaSoft,






What are iterators?

5 Answers   TCS,


how can your software identify which version of dot net framework install in client pc and install framework accordingly

2 Answers   pspl,


What?s the C# equivalent of C++ catch (?), which was a catch-all statement for any possible exception?

1 Answers  


What is check/uncheck?

0 Answers  


What is the advantage of generics in c#?

0 Answers  


Does c# support properties of array types?

0 Answers  


Is an array an object c#?

0 Answers  


Categories