/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
VisualPascalABCNET/FormsDesignerBinding/Dependecies/src/Main/ICSharpCode.SharpDevelop.Sda/Src/WorkbenchSettings.cs
41 строка
1016 B
Бондарев Иван
initial commit
14 май 2015, 22:35
14 май 2015, 22:35
e6e67c1
Код
Авторство
О чём код?
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; using System.Collections.ObjectModel; namespace ICSharpCode.SharpDevelop.Sda { /// <summary> /// This class contains properties to control how the SharpDevelop /// workbench is being run. /// </summary> [Serializable] public sealed class WorkbenchSettings { bool runOnNewThread = true; Collection<string> fileList = new Collection<string>(); /// <summary> /// Gets/Sets whether to create a new thread to run the workbench on. /// The default value is true. /// </summary> public bool RunOnNewThread { get { return runOnNewThread; } set { runOnNewThread = value; } } /// <summary> /// Put files to open at workbench startup into this collection. /// </summary> public Collection<string> InitialFileList { get { return fileList; } } } }