vote up 4 vote down star

As just stated in a recent question and answer, you can't inherit from a static class. How does one enforce the rules that go along with static classes inside VB.NET? Since the framework is compatible between C# and VB it would make sense that there would be a way to mark a class static, but there doesn't seem to be a way.

flag

20% accept rate

4 Answers

vote up 9 vote down check

Module == static class

If you just want a class that you can't inherit, use a NotInheritable class. But it won't be static/Shared. You could mark all the methods, properties, and members as Shared, but that's not strictly the same thing as a static class in C# since it's not enforced by the compiler.

If you really want the vb.net equivalent to a C# static class, use a Module. It can't be inherited and all members, properties, and methods are static/shared.

link|flag
yes a module is a static class. Just read up on extension methods and MS will tell you the same thing. – chrissie1 Sep 25 '08 at 21:19
Interesting. I haven't played with extensions in VB. – MagicKat Sep 25 '08 at 22:21
1  
I retract my previous comment. I was looking at a module in reflector and the IL shows it as sealed. – MagicKat Sep 25 '08 at 22:30
vote up 0 vote down

From the CLR point of view, C# static class is just "sealed" and "abstract" class. You can't create an instance, because it is abstract, and you can't inherit from it since it is sealed. The rest is just some compiler magic.

link|flag
vote up 2 vote down

If you just want to create a class that you can't inherit, in C# you can use Sealed, and in VB.Net use NotInheritable.

The VB.Net equivalent of static is shared.

link|flag
1  
You can't mark a class as shared. – Joel Coehoorn Sep 25 '08 at 21:15
vote up 0 vote down

I think the VB.NET equivalent of static is Shared.

link|flag
2  
yes ... but, you can't mark a class Shared. – MagicKat Sep 25 '08 at 20:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.