Files
lserp_cs_6.0/插件库/Lskj.Update/Program.cs
T
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00:00

26 lines
691 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Lskj.Update
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
string isMes = args.Length > 0 ? args[0] : "";
string server = args.Length > 1 ? args[1] : "";
string database = args.Length > 2 ? args[2] : "";
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMain(isMes, server, database));
}
}
}