SCBreakpointHit.cs 363 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ILRuntime.Runtime.Debugger.Protocol
  6. {
  7. public class SCBreakpointHit
  8. {
  9. public int BreakpointHashCode { get; set; }
  10. public int ThreadHashCode { get; set; }
  11. public KeyValuePair<int, StackFrameInfo[]>[] StackFrame { get; set; }
  12. }
  13. }