Added to doc

This commit is contained in:
2023-05-15 11:15:12 +02:00
parent 1a42b0e955
commit c94ceabc6b
19 changed files with 310 additions and 2980 deletions
-27
View File
@@ -1,27 +0,0 @@
# Program.cs
``` cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Test_Merge
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
```