c++ to vb

G

Guest

hi

what is the equivalent of "unsigned char*" of c+ in VB

i know that unsigned char == byte in VB but what about

unsigned char* == ????

thx
 
S

Steve Long

Typically, I think an unsigned char* is just used for an array of bytes in
C++ right? So, an array of Bytes in VB or C# will be compatible I believe
since you will be passing a pointer to the first byte if you pass it to a
function.

HTH
Steve
 

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

Top