Added a lot to the doc and I need to sleep

This commit is contained in:
2023-05-31 14:41:59 +02:00
parent ad618574c4
commit 3f4b82301d
24 changed files with 3130 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
# 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());
}
}
}
```