forked from Ken98045/On-Guard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
29 lines (28 loc) · 683 Bytes
/
Copy pathProgram.cs
File metadata and controls
29 lines (28 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Windows.Forms;
namespace SAAI
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
try
{
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainWindow());
}
catch (ObjectDisposedException)
{
}
/*catch (Exception ex)
{
MessageBox.Show("There was an unexpected error in On Guard. Please report the following information: " + ex.Message, "Unexpected Error!");
}*/
}
}
}