How can i prevent a class from from being inherited without using Sealed Keyword?
Thanks in advance.
|
In your class's constructor:
Why not use the |
|||||||||||||||||
|
|
Another way is you can make a static method that returns an object of your type and then make the constructor private. This has the advantage that it will create a compile time error instead of a run time error. |
|||
|
|
|
You can use private constructors
Then provide a utility to creaet Base objects (like static methods on Base that have access to the private ctor
Also, if you want to be able to derive from this class, but you don't want other people doing that, you can make your class internal (or even the ctor internal)
|
||||
|
|
|
You can achieve this by using private constructor, something along the lines:
|
||||
|
|
|
Throwing an exception in the constructor will work. I agree though - why not use sealed? It's there for that reason. Unless you' are trying to do something else, and if that's the case, there is probably a better solution too. |
|||
|
|
sealedkeyword? – Tim Apr 19 '12 at 18:07