检查命名空间

发布于 2025-01-08 00:04:11 字数 89 浏览 0 评论 0原文

我最近将使用工具创建的类添加到 Visual Studio 2010 项目中,但无法在代码隐藏文件中调用它。有人告诉我需要检查名称空间。如何检查和控制类的名称空间?

I recently added a class I created with a tool to my Visual Studio 2010 project but I can't call it in my codebehind file. I was told I need to check the namespace. How do I check and control a classes's namespace?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鱼窥荷 2025-01-15 00:04:11

查看代码文件:

Namespace Utilities

    Public Class Foo

    End Class

End Namespace

Namespace Utilities.Formatting

    Public Class DatesAndTimes

    End Class

End Namespace

现在,您必须确保将以下内容添加到任何代码页中:

Imports Utilities
' and/or
Imports Utilities.Formatting

但是,您可以在 Visual Studio 的解决方案资源管理器中双击 MyProject,然后在“引用”选项卡上自动导入您要的命名空间不需要在每个代码页上明确键入“Imports”。

Look at the code files:

Namespace Utilities

    Public Class Foo

    End Class

End Namespace

Namespace Utilities.Formatting

    Public Class DatesAndTimes

    End Class

End Namespace

Now, you have to make sure to add the following to any code page:

Imports Utilities
' and/or
Imports Utilities.Formatting

However, you can double-click on MyProject in the solution explorer in Visual Studio, and on the References tab, automatically Import the namespaces you want on all code pages without explicity typing "Imports " on every code page.

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