/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR_SI/EDUAR_SI_Prueba/Program.cs
http://blpm.googlecode.com/ · C# · 19 lines · 15 code · 1 blank · 3 comment · 0 complexity · b2e5b4fee02a6325cbd39e1412eb4117 MD5 · raw file
- using System;
- using System.Windows.Forms;
-
- namespace EDUAR_SI_Prueba
- {
- static class Program
- {
- /// <summary>
- /// Punto de entrada principal para la aplicación.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Form1());
- }
- }
- }