VariableInfo.cs 805 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ILRuntime.Runtime.Debugger
  6. {
  7. public enum VariableTypes
  8. {
  9. Normal,
  10. FieldReference,
  11. Error,
  12. }
  13. public class VariableReference
  14. {
  15. public long Address { get; set; }
  16. public VariableTypes Type { get; set; }
  17. public int Offset { get; set; }
  18. public VariableReference Parent { get; set; }
  19. }
  20. public class VariableInfo
  21. {
  22. public long Address { get; set; }
  23. public VariableTypes Type { get; set; }
  24. public string Name { get; set; }
  25. public string TypeName { get; set; }
  26. public string Value { get; set; }
  27. public bool Expandable { get; set; }
  28. public int Offset { get; set;}
  29. }
  30. }