Passing an ArrayList to a native DLL?

  • Thread starter Thread starter ORC
  • Start date Start date
O

ORC

Is it possible to pass an ArrayList instead of a System.Array to a native
DLL - and if so is there any specific things to do (like e.g. marshaling)?

Thanks,
Ole
 
Is it possible to pass an ArrayList instead of a System.Array to a native
DLL - and if so is there any specific things to do (like e.g. marshaling)?

It is, but it will probably not give you the expected result (i.e. it
will not marshal to an array).



Mattias
 
Back
Top