COM_Ports_Reset/Program.cs

22 lines
508 B
C#
Raw Permalink Normal View History

2022-04-21 04:03:17 -07:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace COMPortReseter
{
static class Program
{
/// <summary>
/// Point d'entrée principal de l'application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}