I have a C# WCF webservice which is called by two VB 6 project. The target VB project is sending to the client VB project a multidimensional array.
I want to convert the multidimensional array to a jagged array but i have no luck.
How can i find the number of olements in my object[,] to be able to initialize the jagged array ?
I want to follow the answer from this question but i don't have a GetLength
method on my object.
I tried :
int firstElement = astrManTfrLetters.GetLength(0);
int secondElement = astrManTfrLetters.GetLength(1);
And i stuck here.