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)
throws an error:
System.Reflection.RuntimeParameterInfo can't be implicitly convert into Ektron.Cms.Search.Expresions.PropertyExpression
The value stored in
paraObj[0]
is of typeRuntimeParameterInfo
, whereas the constructor forEqualsExpression
expects an object of typePropertyExpression
. You need to ensure that the types of the objects inparaObj
can be bound to a suitable constructor for Activator to be able to instantiate a new object.To resolve your problem you need to create an instance of
PropertyExpression
and use this as the first element in yourparaObj
array: