/
diev
/
CodeCowboyOrg-SimpleSMTPClient
Обзор
Документация
Войти
/
diev
/
CodeCowboyOrg-SimpleSMTPClient
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
SimpleSmtpClient/Program.cs
21 строка
490 B
Peter Stevenson
Add SSL support, remove binaries and fix folder structure.
22 май 2018, 12:40
22 май 2018, 12:40
739a16f
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace SimpleSmtpClient { 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()); } } }