当前位置:  开发笔记 > 编程语言 > 正文

C#auto-property snippet将get和set放在新行上

如何解决《C#auto-propertysnippet将get和set放在新行上》经验,为你挑选了1个好方法。

在Visual Studio 2015中,当我键入prop然后点击选项卡时,我调用自动属性片段并获取:

public property int MyProperty
{ get; set; }

但我想要的是这个:

public property MyProperty { get; set; }

如何让代码片段放在一行?

我在以下位置检查了XML文件:

C:\ Program Files(x86)\ Microsoft Visual Studio 14.0\VC#\ Snippets\1033\Visual C#\ prop.snippet

但它看起来对我来说没问题:


    
        type
        Property type
        int
    
    
        property
        Property name
        MyProperty
    



我没有安装ReSharper.



1> PeteGO..:

Options > Text Editor > C# > Formatting > Wrapping我有它设置为:

在此输入图像描述

通过检查这两个,我得到了我想要的结果.这有点不直观,因为两个选项都会影响两个结果(与影响最高结果的top选项和影响底部结果的bottom选项相反),因此,当我不想要时,我必须允许这样做:

int i = 0; string name = "John"; 

好吧,问题(有点)解决了.

推荐阅读
php
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有