SCThreadStarted.cs 324 B

12345678910111213141516
  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 SCThreadStarted
  8. {
  9. public int ThreadHashCode { get; set; }
  10. }
  11. public class SCThreadEnded
  12. {
  13. public int ThreadHashCode { get; set; }
  14. }
  15. }