1
Public Sub exampleSub()


     Dim temp As IntPtr = GCHandle.Alloc(New IntPtr, GCHandleType.Pinned).AddrOfPinnedObject()

     'other stuff


End Sub

tempEnd Sub? 这个子会导致任何内存泄漏吗?

4

1 回答 1

1

不,不会,您必须手动释放它,希望使用Try/ Finally

于 2013-09-25T04:25:53.130 回答