I have the following function in my COM dll class
[DispId(1610809401)]
intWriteBinValues(refstringSignal,refArrayvalues,refboolWithEv);
When I am using tthis function as
mt.WriteBinValues(StateSignal, vals, value);
where StateSignal is string
vals is not of array type it is of some class type variable which is giving run time exception when I am running the code. How can I solve this exception?
value is of bool type.