INT_PT002/INT_PT002/Program.cs

21 lines
394 B
C#

using System;
using System.Linq;
using System.Collections.Generic;
using System.Windows.Forms;
using INT_PT002.Forms;
namespace INT_PT002
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[MTAThread]
static void Main()
{
Application.Run(new FormMain());
}
}
}