Code
·
14 lines
·
245 bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14namespace MongoGui;
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}