BStrWrapper Class
.NET Framework 2.0
Note: This class is new in the .NET Framework version 2.0.
Marshals data of type VT_BSTR from managed to unmanaged code. This class cannot be inherited.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class BStrWrapper 'Usage Dim instance As BStrWrapper
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class BStrWrapper
SerializableAttribute ComVisibleAttribute(true) public final class BStrWrapper
The BStrWrapper class controls how the wrapped object is marshaled when passed as VARIANT. You can wrap a String object in a BStrWrapper object to marshal it as VT_BSTR. BStrWrapper is useful when passing a null string to unmanaged code. Without BStrWrapper, a null string is passed as VT_EMPTY; however, wrapping the string with BStrWrapper ensures that the null string is passed as VT_BSTR.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: