SafeNet/.svn/pristine/30/30c73193c325068f85fd37e2216...

22 lines
487 B
Plaintext

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Simulator_CS_GTW
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}