Files
LL-28/MES对接/华擎对接资料/c#_demo/C#/MEStest/Program_1.cs
2025-11-19 15:38:36 +08:00

22 lines
467 B
C#

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