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
2023-03-24 14:03:09 +01:00

18 lines
455 B
C#

namespace Password_Manager
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ProfileHandler.ListOfProfiles = new ProfileList();
ApplicationConfiguration.Initialize();
Application.Run(mainForm);
}
public static MainForm mainForm = new MainForm();
}
}