I'm trying to write a dll in c++ (under CLR/Class Library) to be added as a reference in a vb.net project. I explain the issue I have: when I write a generic function without using array or pointers I can visualize and use this function once I have build my c++ project and added as a reference the resulting dll to my vb.net project. But, when I try to write a function in which I have to use a multidimensional array, in the methods shown in the 'objects viewer' in vb my new function does not exists.
Is there something I should know in particular to use multidimensional array as a parameter in functions, to be visible when I add as a reference my dll? Or maybe there is complete different way I have to follow?
Please, let me know how can I resolve this problem.
Thanks for any help you could give me!!