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.
 
Back
Top