using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace interaktivni { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { if (args.Length < 2) { MessageBox.Show("Parametry jsou dve jmena souboru oddelena mezerou: sit vstupni-data"); } else { Form1.NetFile = args[0]; Form1.InputFile = args[1]; Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } } }