How can I find all the classes, methods and namespace of my dll generated from the .NET Builder

35 views (last 30 days)
I have been supplied with a .NET DLL that I need to include this in my application. In order to do this, I need to know the methods and classes contained in this .NET DLL.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
To find the classes and methods contained in your DLL, you can use a tool called the Intermediate Langauge Dissambler, ILDASM.EXE, which is supplied with the SDK .NET Framework. This utility is located in the Bin directory of the SDK .NET Framework. You can invoke the ILD by executing:
ildasm.exe component_name.dll
Where 'component_name.dll' is the file name of your DLL. This will display the namespace, classes and all the methods of the .NET dll.

More Answers (0)

Categories

Find more on MATLAB Compiler SDK in Help Center and File Exchange

Products


Release

R2006a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!