private List newList; public List NewList { get{return newList;} set{newList = value;} }
I want to create something like this, b
Simple and effective alternative:
public class ClassName { public List MyProperty { get; set; } }
or
For differences see this post: List vs List