truthtablecontrol_user_cont.../HE-Test_Dll/Program.cs
Eugen Höglinger bf4681b191 Initialize
- 'User Control'
- Zum Setzten einer Wahrheitstabelle für unterschiedliche Anwender
2023-02-02 14:55:20 +01:00

23 lines
524 B
C#

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