B
Benjamin Lukner
Hi!
I'm using a .Net DLL that's referenced by my project.
The strange thing is that the DLL vendor uses byte arrays of 32 bytes
length having a lower bound of 1 to read and write data!
The only way I've found to create such an array is
Dim aData As System.Array = _
System.Array.CreateInstance( _
GetType(System.Byte), _
New Integer() {32}, _
New Integer() {1})
Does anyone know a neater way to do it?
Kind regards,
Benjamin Lukner
I'm using a .Net DLL that's referenced by my project.
The strange thing is that the DLL vendor uses byte arrays of 32 bytes
length having a lower bound of 1 to read and write data!
The only way I've found to create such an array is
Dim aData As System.Array = _
System.Array.CreateInstance( _
GetType(System.Byte), _
New Integer() {32}, _
New Integer() {1})
Does anyone know a neater way to do it?
Kind regards,
Benjamin Lukner