/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
VisualPascalABCNETLinux/MonoDebugging/Soft/InstructionBreakpoint.cs
21 строка
467 B
Ivan Bondarev
Mono.Debugging
10 апр 2023, 22:04
10 апр 2023, 22:04
f2faa95
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Mono.Debugging.Client; namespace Mono.Debugging.Soft { [Serializable] public class InstructionBreakpoint : Breakpoint { public string MethodName { get; set; } public long ILOffset { get; private set; } public InstructionBreakpoint (string fileName, int line, int column, long ilOffset) : base (fileName, line, column) { this.ILOffset = ilOffset; } } }