SSB_HighSpeed_Modem/oscardata/oscardata/Program.cs

20 lines
448 B
C#
Raw Normal View History

2020-10-27 11:41:16 -04:00
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());
}
}
}