Files
fl-knowledge/LP/Program.cs
T

16 lines
298 B
C#
Raw Normal View History

using System;
using System.Windows.Forms;
namespace LP;
internal static class Program
{
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(defaultValue: false);
Application.Run(new FormDesktop());
}
}