readfilesfromfolder_dll_vis.../Test_ReadFilesFromFolder/Program.cs
Eugen Höglinger 05981db183 Änderung
- Assembly Namen geändert
2024-10-08 17:24:17 +02:00

23 lines
527 B
C#

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