WordOccurrences.cs 371 B

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