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.

good morning,

I have several objects that inherit from my father's class "books" and I need to put them all in an array.

creating an array probe of the parent class and it worked but want to access methods in inherited classes is not possible.

thank.

share|improve this question
You will need to show us your code or some sample code that reproduces the problem you are having in order for us to be able to help you. – competent_tech Dec 12 '11 at 1:49

1 Answer

up vote 1 down vote accepted
  1. As much as possible, avoid having to access the methods in the derived classes anyway. A good design would pass such an array of "books" to methods that dealt with "books", and didn't care that they were actually "textbooks" or that some of their methods were overridden.

  2. If unavoidable, you can do:

    Textbook tb = myBook as Textbook; if(tb != null) tb.TextbookOnlyOperation();

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.