/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v1.8.3
src/ScriptEngine.HostedScript/IHostApplication.cs
19 строк
725 B
Michael Rybakin
fix #1065: сигнатура ВвестиСтроку() приведена к базовой платформе
30 мар 2021, 11:33
30 мар 2021, 11:33
68aa911
Код
Авторство
О чём код?
/*---------------------------------------------------------- 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; using ScriptEngine.HostedScript.Library; namespace ScriptEngine.HostedScript { public interface IHostApplication { void Echo(string str, MessageStatusEnum status = MessageStatusEnum.Ordinary); void ShowExceptionInfo(Exception exc); bool InputString(out string result, string prompt, int maxLen, bool multiline); string[] GetCommandLineArguments(); } }