I have this
function(array<Object^>^ a)
How do I know the length of this array? Like C++, the size has to come with the function?
Thanks,
Remember that All of you classes are from the .net library so in the general case you can allays looks at the generic .net documentation. Here is the array class docs.
int i = a->Length;Does it work?