BStrWrapper Constructors

Definition

Overloads

BStrWrapper(Object)

Initializes a new instance of the BStrWrapper class with the specified Object object.

BStrWrapper(String)

Initializes a new instance of the BStrWrapper class with the specified String object.

BStrWrapper(Object)

Source:
BStrWrapper.cs
Source:
BStrWrapper.cs
Source:
BStrWrapper.cs

Initializes a new instance of the BStrWrapper class with the specified Object object.

public:
 BStrWrapper(System::Object ^ value);
public BStrWrapper (object value);
public BStrWrapper (object? value);
new System.Runtime.InteropServices.BStrWrapper : obj -> System.Runtime.InteropServices.BStrWrapper
Public Sub New (value As Object)

Parameters

value
Object

The object to wrap and marshal as VT_BSTR.

Applies to

BStrWrapper(String)

Source:
BStrWrapper.cs
Source:
BStrWrapper.cs
Source:
BStrWrapper.cs

Initializes a new instance of the BStrWrapper class with the specified String object.

public:
 BStrWrapper(System::String ^ value);
public BStrWrapper (string value);
public BStrWrapper (string? value);
new System.Runtime.InteropServices.BStrWrapper : string -> System.Runtime.InteropServices.BStrWrapper
Public Sub New (value As String)

Parameters

value
String

The object to wrap and marshal as VT_BSTR.

Applies to