Client/Program.cs
author sl
Tue, 12 Aug 2014 20:55:50 +0200
changeset 18 7acec5059fa6
child 21 274a6b27c3f9
permissions -rw-r--r--
Adding our client implementation. Moving server into its own folder.
sl@18
     1
using System;
sl@18
     2
using System.Collections.Generic;
sl@18
     3
using System.Linq;
sl@18
     4
using System.Threading.Tasks;
sl@18
     5
using System.Windows.Forms;
sl@18
     6
sl@18
     7
namespace SharpDisplayClient
sl@18
     8
{
sl@18
     9
    static class Program
sl@18
    10
    {
sl@18
    11
        /// <summary>
sl@18
    12
        /// The main entry point for the application.
sl@18
    13
        /// </summary>
sl@18
    14
        [STAThread]
sl@18
    15
        static void Main()
sl@18
    16
        {
sl@18
    17
            Application.EnableVisualStyles();
sl@18
    18
            Application.SetCompatibleTextRenderingDefault(false);
sl@18
    19
            Application.Run(new MainForm());
sl@18
    20
        }
sl@18
    21
    }
sl@18
    22
}