private List newList; public List NewList { get{return newList;} set{newList = value;} }
I want to create something like this, b
You could do this but the T generic parameter needs to be declared at the containing class:
T
public class Foo { public List NewList { get; set; } }