C# 中的注释是什么?


注释用于解释代码。编译器会忽略注释条目。C# 程序中的多行注释以 /* 开头,以 */ 结尾,如下所示。

多行注释

/* The following is a mult-line
comment In C#
/*

编译器会忽略 /*...*/,并在程序中插入注释。

单行注释

// variable
int a = 10;

以下是演示如何添加单行注释和多行注释的 C# 程序示例 −

示例

 在线演示

using System;

namespace Demo {
   class Program {
      static void Main(string[] args) {
         /* I have started learning C# and
         is my first program */

         // displaying text
         Console.WriteLine("Hello World");
         Console.ReadKey();
      }
   }
}

输出

Hello World

更新日期:2020 年 6 月 20 日

146 次浏览

开启你的 职业生涯

完成课程即可获得认证

开始
广告