namespace Ubung; internal class GenTecList { List list = new List(); public T GetValue(int index) { return list[index]; } public void AddValue(T value) { list.Add(value); } public string GetType() { return typeof(T).Name; } }