我正在做一個項目,在ASP.NET Web應用程序中。我無法將對象轉換爲接口。這是我的代碼:無法將類型的Exam_Mapper投射到IMapper類型
str2 = myXmlTextReader.ReadInnerXml();
Type myTypeObj = testAssembly.GetType(str2);
Object obj = Activator.CreateInstance(myTypeObj);
Imapper EM = (Imapper)obj;
在Windows窗體應用程序中,我沒有任何問題。還有下面的代碼返回空值:
Imapper EM = obj as Imapper;
也許'myTypeObj'類型只是不實現'Imapper'? – sloth