/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Debugger.Core/Src/RemotingSinks/TestClient/Program.cs
30 строк
664 B
Бондарев Иван
initial commit
14 май 2015, 22:35
14 май 2015, 22:35
e6e67c1
Код
Авторство
О чём код?
// <file> // <copyright see="prj:///doc/copyright.txt"/> // <license see="prj:///doc/license.txt"/> // <owner name="David Srbecký" email="dsrbecky@gmail.com"/> // <version>$Revision: 915 $</version> // </file> using System; using System.Collections.Generic; using System.Windows.Forms; using System.Runtime.Remoting; using System.Threading; namespace CustomSinks { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Thread.CurrentThread.Name = "Client (STA)"; Application.EnableVisualStyles(); Application.Run(new FormClient()); } } }