评论

在项目中使用注释是一种方便的方式,可以为你的设计选择留下解释,并且应该在维护或添加代码时使你(或其他人)的生活更轻松。

有两种方法可以为代码添加注释。

单行评论

//之后放置的任何文本都将被视为评论。

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();
    }
}