Version 6.6.0 (2025-02-11): Originalversion auf Lehrerfortbildungsserver (2022)
This commit is contained in:
parent
7f19235667
commit
c922801a4e
211 changed files with 7084 additions and 0 deletions
21
Quellcodes/DistanzVektorAlgorithmusGenerator/Program.cs
Normal file
21
Quellcodes/DistanzVektorAlgorithmusGenerator/Program.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace DistanzVektorAlgorithmusGenerator
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// Der Haupteinstiegspunkt für die Anwendung.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new Form1());
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue