Hi. I need to call a com function which requires an array of string as parameter.
I call it this way:
my.InvokeMember("report", BindingFlags.InvokeMethod, null,
myap,mysir);
where
- myap is the com server
- report is the function
- mysir is an array of strings
In this case "report" receives just the first element of mysir as parameter and not the whole array.
What's wrong?
Gabriel
I call it this way:
my.InvokeMember("report", BindingFlags.InvokeMethod, null,
myap,mysir);
where
- myap is the com server
- report is the function
- mysir is an array of strings
In this case "report" receives just the first element of mysir as parameter and not the whole array.
What's wrong?
Gabriel