检查命名空间
我最近将使用工具创建的类添加到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看代码文件:
现在,您必须确保将以下内容添加到任何代码页中:
但是,您可以在 Visual Studio 的解决方案资源管理器中双击 MyProject,然后在“引用”选项卡上自动导入您要的命名空间不需要在每个代码页上明确键入“Imports”。
Look at the code files:
Now, you have to make sure to add the following to any code page:
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.