WordOccurrences.cs 456 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MediaBrowser.Tests.ConsistencyTests.TextIndexing
  7. {
  8. public class WordOccurrences : List<WordOccurrence>
  9. {
  10. public void AddOccurrence(string fileName, string fullPath, int lineNumber, int wordIndex)
  11. {
  12. this.Add(new WordOccurrence(fileName, fullPath, lineNumber, wordIndex));
  13. }
  14. }
  15. }