mirror of
https://github.com/chylex/Query.git
synced 2025-05-15 14:34:05 +02:00
14 lines
262 B
C#
14 lines
262 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Query;
|
|
|
|
static class Program {
|
|
[STAThread]
|
|
private static void Main() {
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new MainForm());
|
|
}
|
|
}
|