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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top