傳播超過一行的註解被稱為多行註解 −
/* 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中文網其他相關文章!