クラスを動的に作成しました (ここで見つかりました) が、それを使用してリストを作成できない理由がわかりません。
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?)
どうすればいいですか?