DXHelp.CopyPointerDataToObject(Object,IntPtr) Method (Microsoft.DirectX)
Copies an unmanaged pointer to a managed object.
Definition
Visual Basic Public Shared Sub CopyPointerDataToObject( _
ByRef objectData As Object, _
ByVal pointerData As IntPtr _
)C# public static void CopyPointerDataToObject(
ref object objectData,
IntPtr pointerData
);C++ public:
static void CopyPointerDataToObject(
Object^% objectData,
IntPtr pointerData
);JScript public static function CopyPointerDataToObject(
objectData : Object,
pointerData : IntPtr
);
Parameters
objectData System.Object
[ref] Destination Object to which the pointer data is copied.pointerData System.IntPtr
Source pointer data that is copied to the object.
Remarks
Exceptions
A value type must be passed to this method.