in C#, is there a way to
- Get the memory address stored in a reference type variable?
- Get the memory address of a variable?
EDIT:
int i;
int* pi = &i;
- How do you print out the hex value of pi?
|
in C#, is there a way to
EDIT:
|
||||
|
|
|
For #2, the For #1, reference types are trickier: you'll need to use a In order to access the address as a number, you can cast from pointer type to
|
|||||||||
|
|
Number 1 is not possible at all, you can't have a pointer to a managed object. However, you can use an IntPtr structure to get information about the address of the pointer in the reference:
For number 2 you use the & operator:
Pointers of course have to be done in a unsafe block, and you have to allow unsafe code in the project settings. If the variable is a local variable in a method, it's allocated on the stack so it's already fixed, but if the variable is a member of an object, you have to pin that object in memory using the |
|||||||
|