I have some functions in my VB.NET DLL which I can 'hide' from my VB6 app by using the following:

<Runtime.InteropServices.ComVisible(False)> _

But is there a way to make a function ONLY visible to COM clients and not to .NET assemblies?

This way I can use Shared methods for the .NET side avoiding the need for an instance declaration.

link|improve this question

2  
No, a [ComVisible] declaration must be Public to get exported. The last sentence is quite mysterious. – Hans Passant Jul 28 '11 at 15:13
feedback

1 Answer

up vote 1 down vote accepted

You might be able to achieve what you want by using Explicit Interface Implementation. You can declare an interface that will be used by COM clients and another one for .NET clients, leaving all methods private in your implementation class. The code may look like this:

Imports System.Runtime.InteropServices

    Public Interface ITestInterface

    <ComVisible(True)> _
        Sub MyTestMethod()    
    End Interface

    <ComVisible(True)> _
    Public Class TestClass
        Implements ITestInterface

        Private Sub MyTestMethod() Implements ITestInterface.MyTestMethod
        End Sub
    End Class


I have to say that I do not understand what you mean with: "This way I can use Shared methods for the .NET side avoiding the need for an instance declaration. "

link|improve this answer
I have loads of little helper methods that should (and would normally) be declared as Shared methods but if I do this then they are not exposed to COM so I want identical methods wrappers calling the same helper method with one wrapper exposed only to COM (Public Sub) and one method exposed only to .NET (Public Shared Sub) I can't get away from the instance declaration on the COM side but I can on the .NET side. – Matt Wilko Aug 2 '11 at 8:09
feedback

Your Answer

 
or
required, but never shown

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