mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 10:15:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			537 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			537 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.IO;
 | |
| using System.Linq;
 | |
| using System.Threading.Tasks;
 | |
| using System.Windows.Forms;
 | |
| 
 | |
| namespace HaInformator
 | |
| {
 | |
| 
 | |
|     static class Program
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Der Haupteinstiegspunkt für die Anwendung.
 | |
|         /// </summary>
 | |
|         [STAThread]
 | |
|         static void Main()
 | |
|         {
 | |
|             Application.EnableVisualStyles();
 | |
|             Application.SetCompatibleTextRenderingDefault(false);
 | |
|             Application.Run(new HaProgram());
 | |
|         }
 | |
|     }
 | |
| }
 | 
