評論
在專案中使用註釋是一種方便的方式,可以為你的設計選擇留下解釋,並且應該在維護或新增程式碼時使你(或其他人)的生活更輕鬆。
有兩種方法可以為程式碼新增註釋。
單行評論
在//
之後放置的任何文字都將被視為評論。
public class Program
{
// This is the entry point of my program.
public static void Main()
{
// Prints a message to the console. - This is a comment!
System.Console.WriteLine("Hello, World!");
// System.Console.WriteLine("Hello, World again!"); // You can even comment out code.
System.Console.ReadLine();
}
}
多行或分隔的註釋
/*
和*/
之間的任何文字都將被視為註釋。
public class Program
{
public static void Main()
{
/*
This is a multi line comment
it will be ignored by the compiler.
*/
System.Console.WriteLine("Hello, World!");
// It's also possible to make an inline comment with /* */
// although it's rarely used in practice
System.Console.WriteLine(/* Inline comment */ "Hello, World!");
System.Console.ReadLine();
}
}