是需要释放pin_ptr还是自动完成?
Is it necessary to release pin_ptr or is it done automatically?
我阅读了关于 pin_ptr
的微软 documentation,我不清楚它是否自动发布。任何人都可以解释一下吗?
离开这个位
The object is no longer pinned when its pinning pointer goes out of scope, or is set to nullptr.
看来您不必在 pin_ptr 上调用任何释放函数;它是自动完成的。
我阅读了关于 pin_ptr
的微软 documentation,我不清楚它是否自动发布。任何人都可以解释一下吗?
离开这个位
The object is no longer pinned when its pinning pointer goes out of scope, or is set to nullptr.
看来您不必在 pin_ptr 上调用任何释放函数;它是自动完成的。