Marshaling arrays from VB.NET to COM object - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T12:50:57Z http://stackoverflow.com/feeds/question/905923 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/905923/marshaling-arrays-from-vb-net-to-com-object 0 Marshaling arrays from VB.NET to COM object Enrico Detoma 2009-05-25T08:49:21Z 2009-05-25T08:59:41Z <p>Hi,</p> <p>I have a VB6 program which calls a COM method, passing 2 arrays as parameters and expecting 2 arrays to be populated in response.</p> <p>The code is this, where ItemIDs and ItemClientHandles are the input array parameters and MyItemServerHandles and Errors are populated by the COM object.</p> <pre><code>Dim ItemIDs(2) As String Dim ItemClientHandles(2) As Long Dim Errors() As Long ' Array for returned Item related errors Dim MyItemServerHandles() As Long ' Server Handles for Items ItemIDs(1) = "2,VW1000,word" ItemIDs(2) = "2,VW1002,word" ItemClientHandles(1) = 1 ItemClientHandles(2) = 2 Call MyItems.AddItems(2, ItemIDs, ItemClientHandles, MyItemServerHandles, Errors) </code></pre> <p>Now I would like to call the same method from VB.NET, and tried something like this to define the arrays:</p> <pre><code>&lt;MarshalAs(UnmanagedType.LPArray, ArraySubType:=UnmanagedType.I4, SizeConst:=2)&gt; Private MyItemServerHandles(2) As Int32 ' Server Handles for Items &lt;MarshalAs(UnmanagedType.LPArray, ArraySubType:=UnmanagedType.LPWStr, SizeConst:=2)&gt; Private ItemIDs(2) As String &lt;MarshalAs(UnmanagedType.LPArray, ArraySubType:=UnmanagedType.I4, SizeConst:=2)&gt; Private ItemClientHandles(2) As Int32 &lt;MarshalAs(UnmanagedType.LPArray, ArraySubType:=UnmanagedType.I4, SizeConst:=2)&gt; Dim Errors(2) As Int32 ' Array for returned Item related errors </code></pre> <p>but can't get it to work, because I get an error (which I try to translate from italian):</p> <blockquote> <p>Can't cast objects from type 'System.Int32[*]' to type 'System.Int32[]'</p> </blockquote> <p>What is the correct way to marshal arrays from VB.NET managed code to unmanaged COM code?</p> <p>Thanks</p> http://stackoverflow.com/questions/905923/marshaling-arrays-from-vb-net-to-com-object/905960#905960 0 Answer by Enrico Detoma for Marshaling arrays from VB.NET to COM object Enrico Detoma 2009-05-25T08:59:41Z 2009-05-25T08:59:41Z <p>Resolved.</p> <p>The output arrays must be simply declared as</p> <pre><code>Private MyItemServerHandles As System.Array Private Errors As System.Array </code></pre> <p>and they will be marshaled correctly as Int32 arrays when returning from the call.</p>