I have a 2d array group
float[,] group = new float [2,3];
My understanding is that, after this line of code I have 2 3-elements arrays in group
.
{{3elements},{3elements}}
I also have member
float[] member = new float[3] {1,2,3};
I want to set the first array inside the 2d array "group" to match "member" so that I can have {{1,2,3},{}}
I tried group[0] = member;
But I got an error. What's the correct way of doing this?