How can I create a new List where the T is a dynamic Type object.
List
I have
Just use dynamic as the argument:
dynamic
var list = new List();