CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 13 of 13

Threaded View

  1. #1
    Join Date
    Jul 2004
    Posts
    37

    Reflection and arrays

    I am trying to call a method in a 3rd party dll via reflection. Their method looks something like this:

    void SomeFunction(ref A[] b)

    I can handle the ref portion but I dont know what to do concerning the A array. I was thinking maybe I could use List<A> and then call toArray. The problem is A is defined in the 3rd party dll too and has to be gotten via reflection. I dont know how to create it. Any ideas?

    Thanks in advance.

    2.0
    Last edited by SSix2; October 23rd, 2008 at 11:05 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured