I have an object array that has 8 entries in it from value 0 to 7. All of the values are pretty standard, but the value in the [7, 0] spot is a string and for [7, 1] it is another object with two entries, [0, 0] and [0, 1].
My question is, I am trying to assign the object in the [7, 1] spot to a separate object array and then am pulling the [0, 1] string value from that object. My syntax for assigning the 7th spot array to another array keeps coming up null though. What is the correct syntax for either A) Assigning that object to a usable object B) Or just flat out pulling the value from the [7, 1] array and the [0, 1] inner object to a string?
I am using this right now: object[,] checkCD = param[7, 1] as object[,];
which is coming up null, I would rather just get the string from the inner object flat out but help!
