/
smwwiki
/
OneScript_fork
Обзор
Документация
Войти
/
smwwiki
/
OneScript_fork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/OneScript.DebugProtocol/DebuggerSettings.cs
15 строк
544 B
EvilBeaver
Возможность управления кодировкой дебаг консоли
12 апр 2024, 22:18
12 апр 2024, 22:18
8781fed
Код
Авторство
О чём код?
/*---------------------------------------------------------- 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/. ----------------------------------------------------------*/ namespace OneScript.DebugProtocol { public static class DebuggerSettings { public const int MAX_BUFFER_SIZE = 5000000; public const int MAX_PRESENTATION_LENGTH = (int)(MAX_BUFFER_SIZE / 2.5); } }