with resource_context_manager() as resource:
# Perform actions with the resource.
# Perform other actions where the resource is guaranteed to be deallocated.
using (Resource resource = GetResource())
{
// Perform actions with the resource.
...
}
Languages with Dispose Blocks Pattern include Python, C#, Cython
Languages without Dispose Blocks Pattern include Ruby
Read more about Dispose Blocks Pattern on the web: 1.
HTML of this page generated by Features.ts