2025-06-25 21:51:11 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2025-06-29 01:46:32 +08:00
|
|
|
|
using System.IO;
|
2025-06-25 21:51:11 +08:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using Convention;
|
2025-06-29 01:46:32 +08:00
|
|
|
|
using Convention.EasySave;
|
2025-07-03 21:50:26 +08:00
|
|
|
|
using Convention.Symbolization;
|
2025-07-16 15:25:11 +08:00
|
|
|
|
using Convention.Test;
|
2025-06-13 10:52:21 +08:00
|
|
|
|
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
2025-07-16 15:25:11 +08:00
|
|
|
|
Console.WriteLine("Convention-CSharp 测试程序");
|
|
|
|
|
Console.WriteLine("==========================");
|
|
|
|
|
|
|
|
|
|
// 运行文件功能测试
|
|
|
|
|
FileTest.RunTests();
|
|
|
|
|
|
|
|
|
|
Console.WriteLine("\n按任意键退出...");
|
|
|
|
|
Console.ReadKey();
|
2025-06-13 10:52:21 +08:00
|
|
|
|
}
|
|
|
|
|
}
|