暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ISelectableItem.cs 553B

1234567891011121314151617181920
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.GUI.Controls
  3. {
  4. /// <summary>
  5. /// Defines a content element which can be used with the <see cref="GenericItemContentProvider{T}" /> content provider.
  6. /// </summary>
  7. internal interface ISelectableItem<out T>
  8. {
  9. /// <summary>
  10. /// The value represented by this item.
  11. /// </summary>
  12. T Value { get; }
  13. /// <summary>
  14. /// The name to be used when displaying this item.
  15. /// </summary>
  16. string DisplayName { get; }
  17. }
  18. }