KOP-PIbd-32-Katysheva-N-E/ComponentsView/Program.cs

20 lines
501 B
C#
Raw Normal View History

2024-10-01 15:35:05 +04:00
using System.Text.RegularExpressions;
2024-09-16 20:52:42 +04:00
namespace ComponentsLab
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
2024-10-01 15:35:05 +04:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new FormComponents());
}
}
2024-09-16 20:52:42 +04:00
}