Updated 'différences avec le cahier des charges original'

This commit is contained in:
2023-06-06 14:12:10 +02:00
parent 81a7b12500
commit 8a69b42d9b
28 changed files with 5324 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 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());
}
}
}
```