How can I get the memory address of a feilds in C#?
created an object from a class in C#. Is it possible to retrieve its memory location and address using C# code?
i have tried this code but i got error at this line
`
i have tried this code but i got error at this line
IntPtr address = GCHandle.AddrOfPinnedObject(handle); of the code`
