This commit is contained in:
2026-06-01 11:58:11 +02:00
parent e0dc6e4d6e
commit 96becf3607
181 changed files with 3764 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
namespace TextEncryptorApp;
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}