更正整个项目中的命名空间
最初,我的解决方案资源管理器的根文件夹中只有几个表单。后来我创建了一个子文件夹并将这些表单移到该文件夹中。尽管应用程序运行良好,但在少数情况下会出现命名空间错误。
旧表格是这样的:
public partial class contentReportTubeMenu : System.Web.UI.Page
而新表格是:
public partial class subFolderName_contentReportTubeMenu : System.Web.UI.Page
我正在使用 VS-2005。是否有任何内置工具可以通过它纠正所有整个项目文件的错误名称空间。
Originally few Forms were on the root folder of my Solution Explorer. Later I created a sub-folder and moved these Forms in that folder. Even though the application is working fine, but in few instances it gives NameSpace error.
Old Forms were like:
public partial class contentReportTubeMenu : System.Web.UI.Page
whereas, new forms have:
public partial class subFolderName_contentReportTubeMenu : System.Web.UI.Page
I am using VS-2005. Is there any built-in tool through which I can correct wrong namespaces of all entire project files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用查找和替换?
Try using find and replace?
我建议使用查找和替换工具 (Ctrl+H)。您可以使用
正则表达式
来准确匹配您想要的内容。I recommend using Find&Replace tool (Ctrl+H). You can use
Regular Expressions
to match exactly what you want.