Is there a tool like Reflector for COM libraries? I would like to open a COM library and browse the classes and interfaces just like in Reflector. I would rather not install Visual Basic 6.0 in order to do this, if possible.
相关问题
- How do I restart a COM+ application on a remote se
- Java COM bridge
- Powershell - add catch to pick up if there are no
- Why is my COM factory never released during the pr
- Any way to resolve C4772 errors without having to
相关文章
- Signing an F# Assembly (Strong name component)
- Python instrument drivers
- How To Programmatically Enable/Disable 'Displa
- Modify Compiled .Net Exe
- Reading data from Excel in Haskell
- COM+ object activation in a different partition
- Exposing events from .NET to COM
- How to use embedded registration-free manifest for
Even though normal reason for this tool is doing security assessment for COM objects you can still try ComRaider - http://labs.idefense.com/software/fuzzing.php#more_comraider
It's similar to Oleview.
Not in the same way however there are number of tools that allow you to examine the type library. For example OleView.
You can also get a good idea of the types inside COM library by simply adding it to a .NET project. You can then use object browser to browser the resulting interop assembly or even use Reflector on the assembly.