Added technical difficulties to the doc

This commit is contained in:
2023-06-06 15:43:42 +02:00
parent 8a69b42d9b
commit 6653eee01c
22 changed files with 44 additions and 5267 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 TrackTrends
{
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 Main());
}
}
}
```