Is it necessary to release pin_ptr or is it done automatically?

902 Views Asked by At

I read the microsoft documentation about pin_ptr and it is not clear to me if it is release automatically or not. Can anyone shed some light?

1

There are 1 best solutions below

7
On BEST ANSWER

Going off of this bit

The object is no longer pinned when its pinning pointer goes out of scope, or is set to nullptr.

it looks like you don't have to call any release function on a pin_ptr; that it is done automatically.