In C# Is there way to specify a class to be inherited only by a class present in the same assembly and for other assemblies should behave like a public sealed type.
Yes, The are inherited. But you cannot access them as they are private :).
A Static class and a Sealed class cannot be inherited.
The derived class doesn't "inherit" the private members of the base class in any way - it can't access them, so it doesn't "inherit" them.
In C# you use the sealed keyword in order to prevent a class from being inherited. In VB.NET you use the NotInheritable keyword. In Java you use the keyword final .
I think Eric Lippert gets the defining quotes here:
The language itself doesn't have anything that makes this easy, but you should be able to do this by making your constructors internal. If you do this, however, you won't be able to new it up from external assemblies, so you'll have to add a factory method.
public class Foo
{
internal Foo()
{
}
public Foo Create()
{
return new Foo();
}
}
Here's an alternative that lets you new up the class in external assemblies
public sealed class Foo : FooBase
{
}
public class FooBase
{
internal FooBase() { }
}
One question you might ask yourself, however, is exactly why you want the class to be sealed. Sometimes it's inevitable, but I have seen the sealed
keyword get abused so often that I thought I'd bring it up. Often, developers will seal classes because they are overprotective of their code. Most of the time, if a class is well designed, it doesn't need to be sealed.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With