string assembly = "Ektron.Cms.ObjectFactory.dll";
string asspath = path + "bin\\" + assembly;
Assembly run_obj = Assembly.LoadFrom(@asspath);
paraObj[0] = run_obj.GetType(
"Ektron.Cms.Search.SearchContentProperty",
true,
true
).GetProperty("Language");
string equalExp = "Ektron.Cms.Search.Expressions.EqualsExpression";
Type objclass = run_obj.GetType(equalExp, true, true);
object objObj = Activator.CreateInstance(objclass, paraObj);
Activator.CreateInstance(objclass, paraObj)
выдает ошибку:C# Отражение - Тип ошибки
System.Reflection.RuntimeParameterInfo can't be implicitly convert into Ektron.Cms.Search.Expresions.PropertyExpression
Что такое 'paraObj' в приведенном выше фрагменте кода? – abhilash
@ABKolan Объект [] ' –