Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ContentCollection.cs 395B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace Novacode
  5. {
  6. public class ContentCollection : List<Content>
  7. {
  8. public Content this[string name]
  9. {
  10. get
  11. {
  12. return this.FirstOrDefault(content => string.Equals(content.Name, name, StringComparison.CurrentCultureIgnoreCase));
  13. }
  14. }
  15. }
  16. }