SSB_HighSpeed_Modem/oscardata/oscardata/Program.cs

20 lines
448 B
C#
Executable File

using System;
using System.Windows.Forms;
namespace oscardata
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}