在新文件中使用指令
是否可以将额外的“using”指令自动添加到我的新 aspx.cs 文件中,以便我不必一遍又一遍地输入相同的指令(即自定义命名空间 using 指令)
Is it possible to have additional "using" directives automatically added to my new aspx.cs files so that I do not have to keep typing the same ones over and over again (i.e. custom namespace using directives)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以编辑模板使用的文件。更好的是,创建自己的。文件+导出模板。
You can edit the files that are used by the template. Better yet, create your own. File + Export Template.
您不必输入它们。编写代码时,输入类的名称(不带名称空间)。然后点击
CTRL+.
。这将打开解析类型智能感知帮助器。它将把 using 语句添加到文件的顶部。无需滚动。You don't have to type them in. When writing the code, type in the name of the class (without the namespace). Then hit
CTRL+.
. That will open up the resolve type intellisense helper. It will add the using statement to the top of the file. No scrolling necessary.