2018-12-14 14:08:07 +01:00
|
|
|
|
#define DEBUG
|
|
|
|
|
|
|
|
|
|
using System;
|
2018-05-02 14:18:14 +02:00
|
|
|
|
using System.Collections.Generic;
|
2018-12-17 15:13:05 +01:00
|
|
|
|
using System.IO;
|
2018-05-02 14:18:14 +02:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace go01
|
|
|
|
|
{
|
|
|
|
|
static class Program
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Point d'entrée principal de l'application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
2018-12-17 15:13:05 +01:00
|
|
|
|
//StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
|
|
|
|
|
//sw.AutoFlush = true;
|
|
|
|
|
//Console.SetOut(sw);
|
2018-05-02 14:18:14 +02:00
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2018-12-14 14:08:07 +01:00
|
|
|
|
Application.Run(new mainWin());
|
2018-12-17 15:13:05 +01:00
|
|
|
|
//Console.ReadKey();
|
2018-05-02 14:18:14 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|