tags:

views:

65

answers:

1

If I have a module in a VB.Net class library, will it's visibility be limited to the assembly? What I'm looking for is the VB.Net equivalent of a C# internal static class. Does anyone know the equivalent?

+3  A: 

Friend Module will do what you want.

Joel Coehoorn