0
我正在創建Silverlight應用程序運行時的動態類型的通用集合。我的代碼:無法加載文件或程序集
Type listType =
Type.GetType("System.Collections.ObjectModel.ObservableCollection`1[["
+ type.AssemblyQualifiedName
+ "]], System.Windows, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
true);
type
是Type
類型的變量。該類型正在運行時創建。在該代碼行我有錯誤:
Could not load file or assembly ', Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
我該如何解決該錯誤?