Files
lserp_cs_6.0/其他程序/Lskj.TxtFileRead/Program.cs
T
2026-07-02 10:11:39 +00:00

22 lines
490 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Lskj.TxtFileRead
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] age)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FrmMain());
}
}
}