You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

GCItemCounter.cs 431 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow
  5. {
  6. public class GCItemCounter
  7. {
  8. public GCItemType ItemType { get; set; }
  9. public int RefCounter { get; set; }
  10. public DateTime LastUpdateTime { get; set; }
  11. public IntPtr Handle { get; set; }
  12. public override string ToString()
  13. => $"{ItemType} {RefCounter} {LastUpdateTime}";
  14. }
  15. }