vote up 0 vote down star

Hi, in what way can I output the reference of an object in memory. Like:

Console.WriteLine("Object at Memory Location " + object.Reference);

thanks in advance, I need this to do some debugging.

flag

71% accept rate

3 Answers

vote up 4 vote down check

For a managed object you can't and for good reason. It can change location during any garbage collection.

link|flag
if you're looking for an object identity you might be able to use GetHashCode() – Arnshea Jun 30 at 20:01
It can't change location if you pin it. – Eric Lippert Jul 1 at 1:23
woah, what he said! – Arnshea Jul 1 at 2:31
vote up 1 vote down

Every so often you may see a .NET tutorial mention "pointers" and someone get mad in the comments saying that "references" and not "pointers" should be discussed. This is why. The distinction is usually trivial, especially when teaching higher concepts but at times like this, it's very non-trivial.

The actual pointers are handled by .NET and .NET often changes the locations of objects in memory and thus changes/updates the pointers. You and I deal with the references and our reference doesn't need to change when the pointers do because .NET handles this mapping for us. So although there are always pointers involved, even if we do get what the pointer is pointing to at the moment, this doesn't necessarily mean that you're finding out where it will continue to be.

That said, you can still use the below, but I don't think it will achieve what you desire:

int* myIntPointer = &myInt;
link|flag
vote up 2 vote down

Reference are not memory location. Check this blog: Fabulous Adventures In Coding

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.