Link to home
Start Free TrialLog in
Avatar of Kobi55
Kobi55

asked on

Jagged Array

Hi
i Have A Jagged Array
i'm  trying to insert a Regular Array to Jagged Array  in loop
please show me how to it correctly


int [][,] GetJArray ;
GetJagArray = new int [3][,] ;


int GetArray[,] ;
GetArray = new int[5,3] ;

  for ( byte i = 0 ;  i < 5 ; i ++ )
       GetJagArray = new int[,]  {GetArray[i]} ;
       
Avatar of NTAC
NTAC

I've read the question 5 times, and I still can't figure out what you are trying to do.

Please post
1)  The jagged array
2) The regular array
3) where do you want to insert the normal array?
ASKER CERTIFIED SOLUTION
Avatar of drichards
drichards

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial