This repository has been archived on 2025-09-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Password-Manager-Legacy/Password Manager/Program.cs

17 lines
508 B
C#
Raw Normal View History

2023-03-24 10:17:54 +01:00
namespace Password_Manager
{
internal 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();
2023-03-24 11:14:49 +01:00
Application.Run(new MainForm());
}
2023-03-24 10:17:54 +01:00
}
}