© 2026 Hedgehog Software, LLC
IntPtr address = GCHandle.AddrOfPinnedObject(handle);
Person person_1 = new Person("mina remon shaker"); FieldInfo? fieldInfo = typeof(Person).GetField("Name"); GCHandle handle = GCHandle.Alloc(person_1, GCHandleType.Pinned); IntPtr address = GCHandle.AddrOfPinnedObject(handle); handle.Free(); Console.WriteLine("Object address: 0x{0:X}", address.ToInt64());