Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1190 → Rev 1191

/rebootd/trunk/client.net/Program.cs
0,0 → 1,20
using System;
using System.Collections.Generic;
using System.Windows.Forms;
 
namespace reboot_client
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}