除非using语句嵌套了using语句,否则如何让ReSharper需要括号?

Air*_*475 5 c# resharper visual-studio

在ReSharper中,Using如果语句是使用语句或多行的单行,则可以要求语句具有大括号.
Options=> Code Editing=> C#=> Code Style=> Braces=>In single-statement "using"

是否可以Using像这样要求单个语句的大括号:

using (var disposableA = new DisposableA())  {  
    //single line using disposableA...
}
Run Code Online (Sandbox Code Playgroud)

但是当单个语句是嵌套Using语句时不需要大括号?

using (var disposableB = new DisposableB())
using (var disposableC = new DisposableC())
{
    //code that uses disposableB & disposableC...
}
Run Code Online (Sandbox Code Playgroud)

不想在代码中允许这种语句

using (var disposableD = new DisposableD())  
    //single line using disposableD...
Run Code Online (Sandbox Code Playgroud)