Program.cs
author StephaneLenclud
Thu, 14 May 2015 22:43:17 +0200
changeset 0 1d4344872495
permissions -rw-r--r--
First drop.
Basic Sky Deutschland package frequency parssing.
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
}