netmonitor/NetOpenVPNGUI/Program.cs

22 lines
507 B
C#
Raw Normal View History

2011-01-27 11:19:41 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace NetOpenVpnGui
2011-01-27 00:35:09 +01:00
{
static class Program
{
2011-01-27 11:19:41 +01:00
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
2011-01-27 00:35:09 +01:00
static void Main()
{
2011-01-27 11:19:41 +01:00
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
2011-01-27 00:35:09 +01:00
}
}
}