We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a70acb commit d45031eCopy full SHA for d45031e
docs/extensibility/debugger/reference/debug-address.md
@@ -20,19 +20,19 @@ This structure represents an address.
20
21
```cpp
22
typedef struct _tagDEBUG_ADDRESS {
23
- ULONG32 ulAppDomainID;
24
- GUID guidModule;
25
- _mdToken tokClass;
26
- DEBUG_ADDRESS_UNION addr;
+ ULONG32 ulAppDomainID;
+ GUID guidModule;
+ _mdToken tokClass;
+ DEBUG_ADDRESS_UNION addr;
27
} DEBUG_ADDRESS;
28
```
29
30
```csharp
31
public struct DEBUG_ADDRESS {
32
- public uint ulAppDomainID;
33
- public Guid guidModule;
34
- public int tokClass;
35
- public DEBUG_ADDRESS_UNION addr;
+ public uint ulAppDomainID;
+ public Guid guidModule;
+ public int tokClass;
+ public DEBUG_ADDRESS_UNION addr;
36
}
37
38
0 commit comments