I have two arrays:
array<String^>^ lub=gcnew array<String^>(24);
const unsigned char *lb[24];
I want to copy the values from the first array, lub into lb; How can i do it? What conversion methods do I need to use?
I have two arrays:
array<String^>^ lub=gcnew array<String^>(24);
const unsigned char *lb[24];
I want to copy the values from the first array, lub into lb; How can i do it? What conversion methods do I need to use?