nusdownloader/NUS Downloader/Program.cs
2009-06-11 01:16:49 +00:00

23 lines
572 B
C#

using System;
using System.Windows.Forms;
namespace NUS_Downloader
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if (args.Length != 0)
Application.Run(new Form1(args));
else
Application.Run(new Form1());
}
}
}