Returns an IDispatch interface from a managed object.
![]()
The IDispatch pointer for the o parameter.
In managed code, you seldom work directly with the IDispatch interface. However, Marshal.GetIDispatchForObject(object) is useful when calling a method that exposes a COM object parameter as an IntPtr type, or with custom marshaling. Calling an object with this method causes the reference count to increment on the interface pointer before the pointer is returned. Always use Marshal.Release(IntPtr) to decrement the reference count once you have finished with the pointer.
You can also use this method on a managed object to obtain an interface pointer to the COM callable wrapper for the object. For additional information, see [<topic://cpconcomcallablewrapper>].