user1421441
user1421441

Reputation:

Accessing the structure of a dll in dotnet reg

Is it possible to know the total structure of a dll as

  1. names of variables used
  2. signature used
  3. declarations used
  4. variables used
  5. class used
  6. method used

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

Answers (2)

Adil
Adil

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

Illuminati
Illuminati

Reputation: 4619

All you need is System.Reflection namespace

Upvotes: 1

Related Questions