Tagged Questions
0
votes
3answers
445 views
Design pattern to avoid downcasting in message passing
Base class MessageHandler has derived classes. They would like to pass messages to each other. Messages could be of different classes, but can be made to share a base class. How can each ...
2
votes
6answers
1k views
How to change this design to avoid a downcast?
Let's say I have a collection of objects that all inherit from a base class. Something like...
abstract public class Animal
{
}
public class Dog :Animal
{
}
class ...