开发者

Resharper force line break before dot

How do you force line breaks before the dot?

For example:

Method开发者_StackOverflow中文版()
    .CallAnother()
        .AndAnother()

I also want to flow the following:

Bind<IService>().ToMethod(ctx => new DataRetrievalService()).InSingletonScope().Named(
            "LIVESERVICE");

As:

Bind<IDataRetrievalService>()
    .ToMethod(
        ctx => new AdobeDataRetrievalService())
    .InSingletonScope()
    .Named("LIVESEARCHRETRIEVALSERVICE");

This may be the same thing or it could be something different??


You can vote for this issue on the JetBrains YouTrack site for ReSharper. Hopefully if it garners enough support, it will be in the next minor release.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜