我的VB.NET DLL中有一些函数可以通过使用以下内容从我的VB6应用程序中“隐藏”:
<Runtime.InteropServices.ComVisible(False)> _
但有没有办法让一个函数只对COM客户端可见而不是.NET程序集?
这样我可以在.NET端使用Shared方法,避免了实例声明的需要。
答案 0 :(得分:3)
您可以使用Explicit Interface Implementation实现所需目标。您可以声明COM客户端使用的接口和.NET客户端的另一个接口,将所有方法保留为实现类中的私有。代码可能如下所示:
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
我不得不说我不明白你的意思:“这样我可以使用.NET方面的共享方法,避免需要实例声明。”