Reputation:
Is it possible to know the total structure of a dll as
with code or without code through c#.net code without using any decompiler.
is it possible to scan the dll through automation there by listing out
1) what all the packages imported in it 2) class used in it 3) method used in it etc......
Upvotes: 1
Views: 129
Reputation: 148140
Without writing code
Use software Reflector software for .net
With writing code
You can use Reflection Namespace provided by .net Reflection in Dot Net. You can also you use some software to get member information of assembly.
Upvotes: 2