using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _2023_0621_1057_注释
{
class Program
{
/// <summary>
/// 这是一个变量
/// </summary>
static string strA;
static void Main(string[] args)
{
//单行注释
/*
多行注释
*/
#region 分块预处理命令(可嵌套)
AAA();
strA = "aaa";
#endregion
}
/// <summary>
/// 这是一个AAA方法
/// </summary>
static void AAA()
{
}
}
}
1C#基础-06注释
于 2023-09-07 14:00:49 首次发布