using System; using System.Collections.Generic; using System.Linq; using System.Net.Sockets; using System.Threading.Tasks; using System.Windows.Forms; namespace FietsClient { static class Program { [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); TcpConnection tcpConnection = new TcpConnection(); Application.Run(new Login(tcpConnection)); } } }