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

30 次查看(过去 30 天)
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.

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Compiler SDK 的更多信息

产品


版本

R2006a

Community Treasure Hunt

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

Start Hunting!

Translated by