Advanced debugging ?

  • Thread starter Thread starter Christian
  • Start date Start date
C

Christian

Hi,

is it possible to view addresses of objects in memory when debugging in C# ?
(cfr C++)
any advanced debugging tips very welcome ? (website,...)

thnx

Chris
 
Christian,

From what I can tell, it is not. Given that the CLR is free to move
objects around in memory as it sees fit, this makes sense.

The only thing I would think that you could see addresses in memory for
are pointers in unsafe code, and fixed/pinned items in memory.

Hope this helps.
 

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

Back
Top