using System; using System.Collections.Generic; namespace SearchBox { public class InvertedIndex { private Dictionary>> invertedIndex = new Dictionary>>(); public InvertedIndex() { } public bool AddIndex(Index newIndex) { foreach (KeyValuePair> token in newIndex) { } return true; } } }