StackFrameInfo.cs 502 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ILRuntime.Runtime.Debugger
  6. {
  7. public class StackFrameInfo
  8. {
  9. public string MethodName { get; set; }
  10. public string DocumentName { get; set; }
  11. public int StartLine { get; set; }
  12. public int StartColumn { get; set; }
  13. public int EndLine { get; set; }
  14. public int EndColumn { get; set; }
  15. public VariableInfo[] LocalVariables { get; set; }
  16. }
  17. }