複数行にまたがるコメントは複数行コメントと呼ばれます -
/* The following is a multi-line Comment 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# で複数行のコメントを記述するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。