我正在尝试动态加载程序集并创建其类型的变量:
Assembly Ass= Assembly.LoadFrom(@"d:\abc\microsoft.office.interop.excel.dll");
foreach(Type Excel Assembly.Gettypes())
{
// here now Type contains
// Excel.nameSpace="microsoft.officce.interop.excel"
// now i need to creae an variable of type "Excel"
microsoft.officce.interop.excel.applicationClass excel= null;
// something like this
//Here Excel is my nameSpace
Excel.officce.interop.excel.applicationClass excel= null
}
我从过去 2 天开始着手解决这个问题,任何帮助我如何声明 Excel 类型的变量(这是我需要创建的类型)
任何帮助都会非常感谢