private List newList; public List NewList { get{return newList;} set{newList = value;} }
I want to create something like this, b
Either specify the type of T, or if you want to make it generic, you'll need to make the parent class generic.
public class MyClass { etc