Module & Class detection

  • Thread starter HarryBurtonCSharpDetection
  • Start date
H

HarryBurtonCSharpDetection

Hi

I'm looking for a tool to retrive informtion in which class/module a running
C# program executes code.

Just to avoid setting huge amount of break points :)
 
R

Richard Blewett

"HarryBurtonCSharpDetection"
Hi

I'm looking for a tool to retrive informtion in which class/module a
running
C# program executes code.

Just to avoid setting huge amount of break points :)

Hi Harry,

two questions:

1. Where do you want to access this information from - inside the executing
method (for logging, etc) or from outside the process?
2. What do you mean by "the module". Do you mean the *assembly*? the
*module*? or the *C# code file*? (it is possible for an assembly to be made
up of more than one module - a module being the physical housing of the
binary, the assembly being the logical deployment unit)

--
Regards

Richard Blewett
DevelopMentor
http://www.dotnetconsult.co.uk/weblog2
 
H

HarryBurtonCSharpDetection

Dear Richard,

I want to analyse an assembly ... outside the process ..

reason: I should entry in a written project to correct/change a few bugs -
but I'm not willing to set huge amounts of breakpoints to figure out in which
routine the error occure - so I wanna trace the assembly

But since I have the source I'm open for other ideas too

thanks,
regards
Harry
 

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