我动态创建了一个类(在这里找到),但我不明白为什么我不能用它来创建一个列表?
var myType = CompileResultType();
var myObject = Activator.CreateInstance(myType);
var myList = new List<myObject>();
// Error: The type or namespace name 'myObject'
// could not be found (are you missing a using directive
// or an assembly reference?)
我该怎么做?