0

我希望我的 Visual Studio #CS 编辑器更喜欢在 using 语句中使用完全限定的命名。所以我更喜欢:

using myproject.management.control.common;

而不是

using control.common;

Resharper 中有这样一个选项“在嵌套范围内使用完全限定的名称”。

.editorconfig 文件中的并行设置是什么?

4

1 回答 1

3

.editorconfig 中的标志如下:

csharp_qualified_using_at_nested_scope = true

只需将其设置为true

于 2020-08-12T03:50:33.657 回答