PLZ Help me, Pointer Array in VB.NET

  • Thread starter Thread starter Min-su KIM
  • Start date Start date
M

Min-su KIM

HI~

I need to access the pointer array via DLL.
Original C code is

char * buf[64];
for (int i = 0; i < 63; i++) {
buf = new char [64];
}
API_CALL(buf);

To access the API_CALL in VB.NET, I have to pass the
array (containing the pointer of buffer).

Can I access it?

Please help me.... T.T
 
Back
Top