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

30 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

MathWorks Support Team
MathWorks Support Team il 27 Giu 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.

Più risposte (0)

Categorie

Scopri di più su MATLAB Compiler SDK in Help Center e File Exchange

Prodotti


Release

R2006a

Community Treasure Hunt

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

Start Hunting!

Translated by