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