Stop VS from automatically adding using directives(阻止 VS 自动添加 using 指令)
问题描述
我不介意创建脚本时自动创建的 using 指令.那些很好.我正在谈论的是在脚本顶部自动生成的 using 指令,而当我在引用超出范围的类型时立即进行编码.沉默的恶魔身上的痘痘!
I don't mind the using directives which are automatically created when the script is created. Those are fine. What I'm talking about are the using directives which are automatically generated at the top of the script while I'm coding as soon as I refer to a type which is out of scope. A pox upon the silent fiends!
为了澄清,目前如果我尝试在脚本中包含尚未声明为使用"的某个命名空间中存在的类型,则所述命名空间将自动添加到脚本的顶部.这对我来说是不受欢迎的行为.
To clarify, currently if I try including a type which exists in some namespace which is not yet declared as 'using' in the script, said namespace will get auto-added to the top of the script. This is undesired behavior for me.
我只是更喜欢手动添加我的命名空间.
I simply prefer to manually add my namespaces.
推荐答案
在工具下 >选项...>文本编辑器 >C# >IntelliSense,取消选中显示未导入命名空间中的项目(实验性)".
Under Tools > Options... > Text Editor > C# > IntelliSense, uncheck 'Show items from unimported namespaces (experimental)'.
这篇关于阻止 VS 自动添加 using 指令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:阻止 VS 自动添加 using 指令


基础教程推荐
- 全局 ASAX - 获取服务器名称 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01