/*************************************\ * Excel-Dokumente lesen und * * bearbeiten * * * * Kapitel: Erweiterte * * Programmierthemen * * Zuordnung: C#-Buch V2.0 14.2 * * * * Copyright 2015 by Benjamin Jung * \*************************************/ using System; using System.Windows.Forms; namespace CSV20.Excel { static class Program { /// /// Der Haupteinstiegspunkt für die Anwendung. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }