Program.cs
author StephaneLenclud
Sun, 17 May 2015 19:36:48 +0200
changeset 6 3061de2306d9
permissions -rw-r--r--
Fixing character encoding issues.
StephaneLenclud@0
     1
using System;
StephaneLenclud@0
     2
using System.Collections.Generic;
StephaneLenclud@0
     3
using System.Linq;
StephaneLenclud@0
     4
using System.Threading.Tasks;
StephaneLenclud@0
     5
using System.Windows.Forms;
StephaneLenclud@0
     6
StephaneLenclud@0
     7
namespace SatChanGen
StephaneLenclud@0
     8
{
StephaneLenclud@0
     9
    static class Program
StephaneLenclud@0
    10
    {
StephaneLenclud@0
    11
        /// <summary>
StephaneLenclud@0
    12
        /// The main entry point for the application.
StephaneLenclud@0
    13
        /// </summary>
StephaneLenclud@0
    14
        [STAThread]
StephaneLenclud@0
    15
        static void Main()
StephaneLenclud@0
    16
        {
StephaneLenclud@0
    17
            Application.EnableVisualStyles();
StephaneLenclud@0
    18
            Application.SetCompatibleTextRenderingDefault(false);
StephaneLenclud@0
    19
            Application.Run(new MainForm());
StephaneLenclud@0
    20
        }
StephaneLenclud@0
    21
    }
StephaneLenclud@0
    22
}