Loading...
Searching...
No Matches
InterruptGui.cs
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Windows.Forms;
5using System.IO;
6using System.Threading.Tasks;
7
8namespace InterruptGui
9{
10 static class InterruptGui
11 {
15 [STAThread]
16 static void Main()
17 {
18 Application.EnableVisualStyles();
19 Application.SetCompatibleTextRenderingDefault(false);
20 Form1 form = new Form1();
21 Application.Run(form);
22 }
23 }
24}