Access nested objects in C#
I am trying to access specific properties from my object via Google Books API. The content is deserialized into two POCOs to access the nested object. I am stuck on is accessing the properties of volumeInfo
to gather info like the title, author, images, etc.
(.NET) Access nested objects in C#
‘object’ does not contain a definition for ‘title’ and no accessible extension method ‘title’ accepting a first argument of type ‘object’ could be found (are you missing a using directive or an assembly reference?).