tidstagning/Program.cs

22 lines
400 B
C#
Raw Normal View History

2022-06-17 19:09:10 +00:00
using System;
using System.CommandLine;
using System.Collections.Generic;
using System.Windows.Forms;
namespace Tidstagning
{
class Program
{
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainUI());
}
}
}