gpt4 book ai didi

c# - 在 Visual Studio 2015 中隐藏/折叠属性

转载 作者:太空宇宙 更新时间:2023-11-03 21:10:04 25 4
gpt4 key购买 nike

我们有一些代码使用带有长字符串参数(描述等)的属性 - 如果我们可以隐藏属性或至少它的参数,那就太好了。

是否可以在 Visual Studio 2015 中隐藏/折叠属性(在 C# 代码中)

最佳答案

  1. 您可以将参数声明为私有(private)常量:

    private const string LongTextParam = "Some very long text ...";

    ...

    [MyAttribute(LongTextParam)]
    public int SomeProperty { get; set; }
  2. #region可以帮助你:

    #region MyAttribute
    [MyAttribute("A very long string parameter .... ")]
    #endregion
    public int SomeProperty { get; set; }

Visual Studio 中的编辑器可以折叠这些区域。

您也可以结合这两种方法 - 将参数文本移动到私有(private)字段/常量中并用区域包装它。

关于c# - 在 Visual Studio 2015 中隐藏/折叠属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38304429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com