Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

17 righe
341 B

  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. }