/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v1.8.4
src/TestApp/EditedFileSource.cs
39 строк
878 B
EvilBeaver
Глобальная чистка неиспользуемых using
24 дек 2021, 11:01
24 дек 2021, 11:01
c343f53
Код
Авторство
О чём код?
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------*/ using System.IO; using ScriptEngine.Environment; namespace TestApp { internal class EditedFileSource : ICodeSource { private readonly string _code; private readonly string _path = ""; public EditedFileSource(string code, string path) { if (path != "") _path = Path.GetFullPath(path); _code = code; } private string GetCodeString() { return _code; } #region ICodeSource Members string ICodeSource.Code => GetCodeString(); string ICodeSource.SourceDescription => _path != "" ? _path : "<string>"; #endregion } }