/* the following is a multi-linecomment in c#/*
编译器会忽略 /*...*/ 并在程序中添加注释。
以下是一个示例 c# 程序,显示如何添加多行注释 -
using system;namespace demo { class program { static void main(string[] args) { /* the following is a multi-line comment in c# /* // printing console.writeline("hello world"); console.readkey(); } }}
以上就是如何在c#中编写多行注释?的详细内容。
