C# Basics

标识符区分大小写。

变量需要声明类型。

语句需要 “;” 作为结束符。

Comments

// 单行注释

/* 多行
注释 */

XML Documentation Comments

/// <summary>
///  This class performs an important function.
/// </summary>
public class MyClass {}

注释惯例

CommentsPlus - Visual Studio Marketplace