ArrayList C-C#

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

How do i pass an ArrayList from C# to C?
I am accessing a fn in C# which takes an ref ArrayList as a parameter, how
do i pass this datastruct from C?

Thanks!
(i know i will post in the interop also.. just looking for various psble
solutions)
 
You can't. You need to marshal the ArrayList container yourself.

Willy.
 
Back
Top