using System.Collections.Generic; namespace DataTables { public class Table { protected List L; protected Dictionary M; public List List() { return L; } public Dictionary Map() { return M; } public T Get(ID id) { if (M == null) { return default; } return M[id]; } } }