[go: up one dir, main page]

Menu

[r5]: / trunk / Program.cs  Maximize  Restore  History

Download this file

23 lines (21 with data), 539 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace kOS_IDE
{
static class Program
{
/// <summary>
/// Point d'entrée principal de l'application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
OpenedForms.Init();
Application.Run(new TextEditor());
}
}
}