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?
Friend Module
will do what you want.
精彩评论