Edit

Share via


BSTR_ARRAY

A structure that describes an array of strings.

Syntax

struct BSTR_ARRAY {
    DWORD    dwCount;
    string[] Members;
}

Members

dwCount
Number of strings in Members array.

Members
Array of strings.

Remarks

This structure is returned from the EnumPersistedPorts method.

[C++ only] Each individual string must be freed using SysFreeString, and the Members array must be freed with CoTaskMemFree.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also