/
tltprog
/
Hex
Обзор
Документация
Войти
/
tltprog
/
Hex
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Program.cs
22 строки
504 B
tlt.programmer
Add project files.
29 окт 2022, 15:13
29 окт 2022, 15:13
5f65380
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace Hex { 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()); } } }