Monitoring / detecting assembly calls

G

Guest

Greetings,

I was just assigned to a project where I have to use existing .NET 1.1 and
2.0 assemblies, but there is no documentation for them. I have an idea of
what each exposed method does, but I do not have a clue as to how the
parameters are formatted.

For example, one parameter is: string[] theStrings. This obviously need more
info. So my question...is there a way--or any tool I can use--to monitor a
running assembly to see the contents of the parameters when one of its public
methods is called?

If not, is there an easy way to dissasemble the assembly to see the source
code?

Thanks,

Eric
 
G

Guest

That's absolutely perfect. Thank you!!

I also found a decompiler plug-in for Lutz Roeder's "Reflector for .NET":
http://www.denisbauer.com/NETTools/FileDisassembler.aspx

I'm now looking at sweet, sweet source code. :)

Thanks again,

Eric



Interlogic said:
This has helped me quite a bit in situations like this. Hope it helps!

http://www.aisto.com/roeder/dotnet/

Eric said:
Greetings,

I was just assigned to a project where I have to use existing .NET 1.1 and
2.0 assemblies, but there is no documentation for them. I have an idea of
what each exposed method does, but I do not have a clue as to how the
parameters are formatted.

For example, one parameter is: string[] theStrings. This obviously need more
info. So my question...is there a way--or any tool I can use--to monitor a
running assembly to see the contents of the parameters when one of its public
methods is called?

If not, is there an easy way to dissasemble the assembly to see the source
code?

Thanks,

Eric
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top