Tiny programs (C, C++, C#, ...)
File detail
| Name: | Program.cs [Download] |
| Location: | tiny > MW5 > proj2 > proj2 |
| Size: | 477 B |
| Last modification: | 2007-08-29 17:42 |
Source code
using System; using System.Collections.Generic; using System.Windows.Forms; namespace proj2 { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainWindow()); } } }




Back to main page
Program.cs