// Copyright Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace NetworkProfiler { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main( string[] Args ) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.CurrentCulture = System.Globalization.CultureInfo.InvariantCulture; Application.Run(new MainWindow()); } } }