What do you mean "handle"? Windows HANDLEs?
A handle is an integer that's used to locate resources in a table. If whatever library you're using doesn't provide an interface for getting the type of object a given handle points to, you can't get that information.
I mean handles to managed objects.
I know how to check types of pointers to unmanaged objects using dynamic_cast,
but I am seeking for ways to check types of handles to managed objects.....