Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ok this is hard to explain, but here goes. I have a 3D list of objects. The objects type are called CObject, another class CTile inherts CObject.

       static public List<List <List <CObject>>> CObjList 
                  = new List<List<List<CObject>>>();

Ok now lets say that the list is full of information in the correct way. (Can be see via breakpionts in the code); So I go to access an item in list like below

CObjList.[0][0][0].titleImageId

Ok titleImageId is a member of CTile, but I cant access it by using this syntax. Its public and everything. All that I can access are the members of CObject class.

I hope I have explained myself as best I can there. Thanks

share|improve this question

2 Answers

up vote 2 down vote accepted
((CTile)CObjList[0][0][0]).titleImageId

or

(CObjList[0][0][0] as CTile).titleImageId
share|improve this answer
That work! Thanks very much. – Ciarán Dec 24 '09 at 18:51

Use:

CList l = CObjList[0][0][0] as CList;
if(l != null)
    id = l.titleImageId

You should index the CObjList directly, not using a dot operator

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.