test_replacevariable_test_v.../Test_ReplaceVariable.git/Program.cs
Eugen Höglinger 52c4eec014 Initialized
2024-10-09 14:35:19 +02:00

23 lines
536 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Test_ReplaceVariable.git
{
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());
}
}
}