using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DynamicBibleUtility { public class Index : List { public IndexItem GetItem(string word) { return this.Find(i => i.word == word); } } public class IndexItem { public string word = ""; public List refs = new List(); } }