Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
void Empty( );
Remarks
Frees the m_str member.
Example
// example for CComBSTR::Empty
CComBSTR bstr( "abc" );
//calls SysFreeString to free the BSTR
bstr.Empty();
_ASSERTE( bstr.Length( ) == 0 );