Every object in .NET inherits (directly or indirectly) from the common root base \"Object\". Is there such a common object root in C++? How do I pass any object to
There is no common root class. Use either void* to pass any object into a function, or better define some base class.