CLRDATA_ADDRESS_RANGE Structure
Defines an address range.
Note
This API was originally designed for internal use in the runtime. Although it is now supported for 3rd party use, we recommend working with ICorDebug
and ICorProfiler
APIs when possible.
Syntax
typedef struct
{
CLRDATA_ADDRESS startAddress;
CLRDATA_ADDRESS endAddress;
} CLRDATA_ADDRESS_RANGE;
Members
Member | Description |
---|---|
startAddress |
The start address of the range. |
endAddress |
The end address of the range. |
Remarks
This structure lives inside the runtime and is not exposed through any headers or library files. To use it, define the structure as specified above, where CLRDATA_ADDRESS
is a 64-bit unsigned integer.
Requirements
Platforms: See System Requirements.
Header: None
Library: None
.NET Framework Versions: Available since 4.7
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.