MATLAB: How to find all the classes, methods and namespace of the dll generated from the .NET Builder

allbuilderclassesdllfindMATLAB Builder NEmethodsnamespacenet

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.

Best Answer

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.