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
MathWorks Support Team 2009년 6월 27일
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