美文网首页
C#中的#region和#endregion的作用

C#中的#region和#endregion的作用

作者: 慕城祉宇流年殇 | 来源:发表于2017-11-24 14:07 被阅读0次

    #region #endregion

    用来注释中间代码的作用 而且在其他地方用到中间的类和方法 都会有你标注的注释 本身不参与编译 还可以缩进代码 方便阅览折叠代码

    #region    使您得以在使用    Visual    Studio    代码编辑器的大纲显示功能时指定可展开或折叠的代码块

    如:   #region    name

    其中:

    name

    希望给予将出现在    Visual    Studio    代码编辑器中的区域的名称。

    备注

    必须用    #endregion    指令终止    #region    块。

    #region    块不能与    #if    块重叠。但是,可以将    #region    块嵌套在    #if    块内,并且可以将    #if    块嵌套在    #region    块内。

    示例

    //    preprocessor_region.cs

    #region    MyClass    definition

    public    class    MyClass

    {

    public    static    void    Main()

    {

    ...........

    }

    }

    #endregion

    或:

    代码例子如下:

    using System;

    namespace testClass {

    public class newclass {

    -      #region regionname

    private string a;

    private string b;

    ........

    //you can write a lots of code here

    #endregion

    }

    }

    在代码写完后,在左边会出现一个"+"号或"-"号

    原帖地址

    http://fanxiaoling2012.blog.163.com/blog/static/16527541120105142342924/

    相关文章

      网友评论

          本文标题:C#中的#region和#endregion的作用

          本文链接:https://www.haomeiwen.com/subject/wptfbxtx.html