I have a library which contains unloadable type (whenever I try to access them I get a TypeLoadException). Therefore, I can't use the System.Reflection namespace to inspect those types. Is there some other way to reflect on those types. Of course, I don't expect to be able to use any methods, I just want to see basic info such as method names and perhaps the argument types.
Edit: I know and accept that the type is unloadable, it is because it defines its own System.Object and it does not have a reference to mscorlib. Reflector and ildasm work, but I want to do the reflection on the fly.