21 lines
No EOL
612 B
C#
21 lines
No EOL
612 B
C#
using Mysql_example.Database;
|
|
using static System.ComponentModel.Design.ObjectSelectorEditor;
|
|
|
|
namespace Mysql_example
|
|
{
|
|
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();
|
|
Application.Run(new MainForm());
|
|
|
|
}
|
|
}
|
|
} |