/
ucnl
/
RedBASE_Config
Обзор
Документация
Войти
/
ucnl
/
RedBASE_Config
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
master
Program.cs
22 строки
540 B
Aleksandr
Add files via upload
30 июн 2018, 00:03
Не верифицирован
30 июн 2018, 00:03
012018f
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace RedBASE_Config { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } } }