/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v2.0.2
src/OneScript.DebugProtocol/StackFrame.cs
30 строк
820 B
EvilBeaver
Рефакторинг контейнеров переменных
19 дек 2025, 12:19
19 дек 2025, 12:19
16e326b
Код
Авторство
О чём код?
/*---------------------------------------------------------- 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 System.Runtime.Serialization; using Newtonsoft.Json; namespace OneScript.DebugProtocol { [DataContract, JsonObject, Serializable] public class StackFrame { [DataMember] public int Index { get; set; } [DataMember] public string MethodName { get; set; } [DataMember] public int LineNumber { get; set; } [DataMember] public string Source { get; set; } public int ThreadId { get; set; } } }