Let\'s say I have a Base class and several Derived classes. Is there any way to cast an object to one of the derived classes without the ne
What are you trying to accomplish, exactly? In my experience, things like this are a sign of bad design. Re-evaluate your class hierarchy, because the goal of object oriented design is make things like this unnecessary.