swap Function (auto_handle)
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at swap Function (auto_handle).
Swaps objects between one auto_handle and another.
template<typename _element_type> void swap( auto_handle<_element_type> % _left, auto_handle<_element_type> % _right );
Parameters
_left
An auto_handle.
_right
Another auto_handle.
// msl_swap_auto_handle.cpp
// compile with: /clr
#include <msclr\auto_handle.h>
using namespace System;
using namespace msclr;
int main() {
auto_handle<String> s1 = "string one";
auto_handle<String> s2 = "string two";
Console::WriteLine( "s1 = '{0}', s2 = '{1}'",
s1->ToString(), s2->ToString() );
swap( s1, s2 );
Console::WriteLine( "s1 = '{0}', s2 = '{1}'",
s1->ToString(), s2->ToString() );
}
s1 = 'string one', s2 = 'string two' s1 = 'string two', s2 = 'string one'
Header file <msclr\auto_handle.h>
Namespace msclr
Show: