GCHandle::ToIntPtr Method (GCHandle)
.NET Framework (current version)
Returns the internal integer representation of a GCHandle object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System.Runtime.InteropServices::GCHandle
A GCHandle object to retrieve an internal integer representation from.
The following code example shows an App class that creates a handle to a managed object using the GCHandle.Alloc method, which prevents the managed object from being collected. A call to the EnumWindows method passes a delegate and a managed object (both declared as managed types, but not shown), and casts the handle to an IntPtr object. The unmanaged function passes the type back to the caller as a parameter of the callback function.
Universal Windows Platform
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Show: