自动换行对方法链点在ReSharper的

使用当前设置,ReSharper的打破长行是这样的:自动换行对方法链点在ReSharper的

var attributes = 

GetType().GetMethod((string) filterContext.RouteData.Values["action"]).GetCustomAttributes(

typeof (AutomaticRedirectToViewAttribute), false);

我觉得它比不破线要好,但在打破它的方法/属性点让我更有意义:

var attributes = 

GetType()

.GetMethod((string) filterContext.RouteData.Values["action"])

.GetCustomAttributes(typeof (AutomaticRedirectToViewAttribute), false);

(它不必看起来完全这个样子。)我如何设置ReSharper的做这样?我的设置中没有找到这样的选项。

回答:

This issue暗示它不可能与Resharper一起使用。

我似乎还记得关于它的论坛帖子,但我找不到它。

回答:

在Visual Studio 2010中,它可以按照您的需要工作。

哪个版本正在使用?

以上是 自动换行对方法链点在ReSharper的 的全部内容, 来源链接: utcz.com/qa/265186.html

回到顶部