DLL 适用于基于 Web 的应用程序,但不适用于独立窗口应用程序

发布于 2024-11-07 17:36:12 字数 316 浏览 1 评论 0原文

我将一些最常用的函数和扩展放入一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深海夜未眠 2024-11-14 17:36:12

如果您的函数扩展了 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文