2010-07-09 19:54:13 +02:00
|
|
|
|
///////////////////////////////////////////
|
|
|
|
|
// NUS Downloader: Program.cs //
|
|
|
|
|
// $Rev:: $ //
|
|
|
|
|
// $Author:: $ //
|
|
|
|
|
// $Date:: $ //
|
|
|
|
|
///////////////////////////////////////////
|
2010-07-05 04:12:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
2009-06-11 03:16:49 +02:00
|
|
|
|
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());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|