Skip to content

Commit e45cc7f

Browse files
authored
Merge pull request #2495 from changeworld/patch-28
Delete unnecessary spaces
2 parents d7fbece + e16fafe commit e45cc7f

File tree

1 file changed

+43
-43
lines changed

1 file changed

+43
-43
lines changed

docs/extensibility/debugger/reference/bstr-array.md

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -2,55 +2,55 @@
22
title: "BSTR_ARRAY | Microsoft Docs"
33
ms.date: "11/04/2016"
44
ms.topic: "conceptual"
5-
f1_keywords:
5+
f1_keywords:
66
- "BSTR_ARRAY"
7-
helpviewer_keywords:
7+
helpviewer_keywords:
88
- "BSTR_ARRAY structure"
99
ms.assetid: 48da37f7-a237-48a9-9ff9-389c1a00862c
1010
author: "gregvanl"
1111
ms.author: "gregvanl"
1212
manager: jillfra
13-
ms.workload:
13+
ms.workload:
1414
- "vssdk"
1515
---
1616
# BSTR_ARRAY
17-
A structure that describes an array of strings.
18-
19-
## Syntax
20-
21-
```cpp
22-
typedef struct tagBSTR_ARRAY {
23-
DWORD dwCount;
24-
BSTR* Members;
25-
} BSTR_ARRAY;
26-
```
27-
28-
```csharp
29-
struct BSTR_ARRAY {
30-
DWORD dwCount;
31-
string[] Members;
32-
}
33-
```
34-
35-
## Terms
36-
dwCount
37-
Number of strings in `Members` array.
38-
39-
Members
40-
Array of strings.
41-
42-
## Remarks
43-
This structure is returned from the [EnumPersistedPorts](../../../extensibility/debugger/reference/idebugportsupplier3-enumpersistedports.md) method.
44-
45-
[C++ only] Each individual string must be freed using `SysFreeString`, and the `Members` array must be freed with `CoTaskMemFree`.
46-
47-
## Requirements
48-
Header: msdbg.h
49-
50-
Namespace: Microsoft.VisualStudio.Debugger.Interop
51-
52-
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
53-
54-
## See Also
55-
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
56-
[EnumPersistedPorts](../../../extensibility/debugger/reference/idebugportsupplier3-enumpersistedports.md)
17+
A structure that describes an array of strings.
18+
19+
## Syntax
20+
21+
```cpp
22+
typedef struct tagBSTR_ARRAY {
23+
DWORD dwCount;
24+
BSTR* Members;
25+
} BSTR_ARRAY;
26+
```
27+
28+
```csharp
29+
struct BSTR_ARRAY {
30+
DWORD dwCount;
31+
string[] Members;
32+
}
33+
```
34+
35+
## Terms
36+
dwCount
37+
Number of strings in `Members` array.
38+
39+
Members
40+
Array of strings.
41+
42+
## Remarks
43+
This structure is returned from the [EnumPersistedPorts](../../../extensibility/debugger/reference/idebugportsupplier3-enumpersistedports.md) method.
44+
45+
[C++ only] Each individual string must be freed using `SysFreeString`, and the `Members` array must be freed with `CoTaskMemFree`.
46+
47+
## Requirements
48+
Header: msdbg.h
49+
50+
Namespace: Microsoft.VisualStudio.Debugger.Interop
51+
52+
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
53+
54+
## See Also
55+
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
56+
[EnumPersistedPorts](../../../extensibility/debugger/reference/idebugportsupplier3-enumpersistedports.md)

0 commit comments

Comments
 (0)