BreakpointInfo.cs 311 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ILRuntime.Runtime.Debugger
  6. {
  7. class BreakpointInfo
  8. {
  9. public int BreakpointHashCode { get; set; }
  10. public int MethodHashCode { get; set; }
  11. public int StartLine { get; set; }
  12. }
  13. }