Passing a Array into a com object

  • Thread starter Thread starter themadlad
  • Start date Start date
T

themadlad

Hello,

I need to pass an array into a com object, however not of type
object[].

String[] fileList = new String[1];
object xlFiles = new Object();

Any Ideas? :?
 
themadlad,

Can you give the method definition of the COM object you want to pass
the string array to? Without seeing that, it's hard to know.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

themadlad said:
Hello,

I need to pass an array into a com object, however not of type
object[].

String[] fileList = new String[1];
object xlFiles = new Object();

Any Ideas? :?
 
Back
Top