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

IComponent.cs 341 B

8 个月前
12345678910111213141516
  1. namespace SharpDX
  2. {
  3. // From SharpDX.Toolkit
  4. /// <summary>
  5. /// Base interface for a component base.
  6. /// </summary>
  7. public interface IComponent
  8. {
  9. /// <summary>
  10. /// Gets the name of this component.
  11. /// </summary>
  12. /// <value>The name.</value>
  13. string Name { get; set; }
  14. }
  15. }