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
Miskolczi Richárd bb7625d2f8 bro check it out
2023-03-24 12:39:50 +01:00

16 lines
402 B
C#

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