Hi,

Im looking into VB.net for a project but I have come against a problem. Structures required in some DLLs have arrays of byte such as

Type WSAData
A(100) As Byte
B As Integer
End Type

The problem is I cant find out how i can replicate this structure in VB.net since you cant use Type definition but have to use Structure, in which you can only define a reference to a dynamic array.

Is there any way arround this?

thanks