Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

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; } }

1 Answers   iGate,


What is a decimal c#?

0 Answers  


What is data reader in c#?

0 Answers  


Is it possible to implement an interface to a structure? Is it possible to extend a struct? Is it possible to inherit a class to struct?

9 Answers   IBM, Logica CMG, TCS,


Why do we override in c#?

0 Answers  


What is console read in c#?

0 Answers  


Does C# supports multi-dimensional arrays ?

4 Answers   Microsoft,


What is ienumerable and iqueryable?

0 Answers  


What is difference between encapsulation and abstraction in c#?

0 Answers  


What is global asax in c#?

0 Answers  


What is int32?

0 Answers  


What is addressof operator?

0 Answers  


Categories