Added to the performance tab of the doc

This commit is contained in:
2023-06-07 12:51:59 +02:00
parent 6653eee01c
commit 73a5bcf116
44 changed files with 24171 additions and 16704 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 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());
}
}
}
```