DLL 适用于基于 Web 的应用程序,但不适用于独立窗口应用程序
我将一些最常用的函数和扩展放入一个 DLL 中,这样我就可以将该 DLL 包含到任何项目中。这对于基于 Web 的项目效果很好,但在独立应用程序上会引发错误。我对程序集名称进行导入。我可以看到函数和方法,但是当我尝试运行时,我得到:
{Function Name} 未声明。由于其保护级别,它可能无法访问。
有什么想法吗?
我想知道是否是因为在 dll 中我正在对一些字符串和一些 system.web.ui.webcontrols 对象进行扩展。我不认为这会成为问题,因为在 dll 中我正在执行 Imports System.Web.UI.WebControls。
I took some of my most used functions and extensions and put them into a DLL so I can include the DLL into any project. This works fine for web based projects but throws an error on stand-alone apps. I do an Imports on the assembly name. I can see the functions and methods but when I try to run I get:
{Function Name} is not declared. It may be inaccessible due to its protection level.
Any thoughts?
I have wondered if it is because in the dll I’m doing extensions on some strings and some system.web.ui.webcontrols objects. I didn’t thing this would be a problem because in the dll I’m doing an Imports System.Web.UI.WebControls.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的函数扩展了 System.Web.UI 中的函数,那么您将需要在 Windows 应用程序中添加对此的引用。
没有看到函数声明,它是否被标记为内部?
If your function extends a function in System.Web.UI then you will need to add a reference to this in your Windows app.
Without seeing the function declaration, is it marked as internal?