在Eclipse中调试时,我进入(F5)一个如下的语句,
encryptedBytes = LightWeightEncryptor.encrypt(messageBytes, password.toCharArray());
Run Code Online (Sandbox Code Playgroud)
调试器步入JRE方法String.toCharArray(),但我希望它跳过它并进入我自己的代码LightWeightEncryptor.encrypt.
我厌倦了不得不退出JRE代码并退回到我自己的代码中.我已经看到很多方法可以进入JRE代码,但我找不到避免它的方法.
如何将Resharper设置为缩进包装的C#行,只包含一个选项卡,用于包围的行(当然第一行除外)?
如果我将连续线缩进倍数设置为零,我得到这个:
This is a really long
statement that wraps around
and takes up three lines of code;
Run Code Online (Sandbox Code Playgroud)
如果我将连续线缩进倍数设置为1,我会得到这个阶梯效果:
This is a really long
statement that wraps around
and takes up three lines of code;
Run Code Online (Sandbox Code Playgroud)
我真正想要的是这个(普通的旧悬挂式缩进样式):
This is a really long
statement that wraps around
and takes up three lines of code;
Run Code Online (Sandbox Code Playgroud)
Dmitry Osinovskiy 在这里暗示Resharper 8可能能够做到这一点,但我有8.0.2,我仍然没有办法做到这一点.