pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Soft/InstructionBreakpoint.cs

22 lines
467 B
C#
Raw Permalink Normal View History

2023-04-10 22:04:27 +03:00
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;
}
}
}