📅  最后修改于: 2020-10-31 02:34:48             🧑  作者: Mango
C#注释是编译器未执行的语句。 C#编程中的注释可用于提供代码,变量,方法或类的解释。在注释的帮助下,您也可以隐藏程序代码。
C#中有两种类型的注释。
单行注释以//(双斜杠)开头。让我们看一下C#中单行注释的示例。
using System;
public class CommentExample
{
public static void Main(string[] args)
{
int x = 10;//Here, x is a variable
Console.WriteLine(x);
}
}
输出:
10
C#多行注释用于注释多行代码。它用斜杠和星号(/ * ….. * /)包围。让我们看一下C#中的多行注释示例。
using System;
public class CommentExample
{
public static void Main(string[] args)
{
/* Let's declare and
print variable in C#. */
int x=20;
Console.WriteLine(x);
}
}
输出:
20