Normal view

There are new articles available, click to refresh the page.
Before yesterdayMain stream

Benavídez vs. Andrade Livestream: How to Watch the WBC Boxing Fight Online

Two undefeated champions face off in the boxing ring tonight as two-time Super Middleweight World Champion David “El Monstruo” Benavídez defends his Interim WBC Super Middleweight Title against two-division World Champion Demetrius Andrade. The Premier Boxing Champions event takes place tonight, Saturday, Nov. 25 at 8 p.m. ET / 5 p.m. PT from Michelob ULTRA Arena in […]

How to reach the value of an object nested within an object?

I am somehow producing a C# object that contains another object structure. I am not sure how I can get hold of its content.

I have an array whose value is

{object[1,1]} 

and type

object[,] 

If I unfold it I get:

arr[0,0] 

with value

{object[1..1]} 

and with type

object{object[]}

and a structure that tells

[1] 

with value (for the sake of argument)

myString 

and with type

object{string}

I am not sure how I can get hold of the encapsulated string myString that I am searching for.

From the Watch window ((-) means that I unfolded the toggle point (+)):

    Name          Value             Type
(-) arr[0,0]      {object[1..1]}    object{object[]}
    [1]           "myString"        object{string}
❌
❌