Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/337.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何将Resharper设置为仅按一个选项卡缩进包装行?_C#_Resharper_Word Wrap_Indentation - Fatal编程技术网

C# 如何将Resharper设置为仅按一个选项卡缩进包装行?

C# 如何将Resharper设置为仅按一个选项卡缩进包装行?,c#,resharper,word-wrap,indentation,C#,Resharper,Word Wrap,Indentation,我如何设置Resharper,使缠绕的C#行只缩进一个制表符(当然第一行除外) 如果我将连续行缩进乘数设置为零,则得到以下结果: This is a really long statement that wraps around and takes up three lines of code; 如果将“连续线缩进倍增”设置为1,则会得到以下楼梯踏步效果: This is a really long statement that wraps around and ta

我如何设置Resharper,使缠绕的C#行只缩进一个制表符(当然第一行除外)

如果我将连续行缩进乘数设置为零,则得到以下结果:

This is a really long 
statement that wraps around
and takes up three lines of code;
如果将“连续线缩进倍增”设置为1,则会得到以下楼梯踏步效果:

This is a really long
    statement that wraps around
        and takes up three lines of code;
我真正想要的是这个(普通的旧悬挂缩进样式):


Dmitry Osinovskiy暗示Resharper 8可能能够做到这一点,但我有8.0.2,我仍然没有找到一种方法来做到这一点。

我也确实需要它。在重构一些同事已经嵌套得很深的长代码行时,resharpen经常在每个单词创建噩梦般的对角线后中断。必须有一种方法来保持第一行之后的所有缩进对齐。为什么这仍然不是Resharper可以做的事情,即使在Resharper 9中也是如此?
This is a really long
    statement that wraps around
    and takes up three lines of code;