[/] [trunk/] [Program.cs] - Rev 3
Compare with Previous |
Blame |
View Log
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
Compare with Previous |
Blame
All times are GMT -5. The time now is 04:34 AM.