Struct SessionMemoryBlock
Represents a block of memory space allocated inside a memory segment.
public record struct SessionMemoryBlock : IEquatable<SessionMemoryBlock>
- Implements
- Inherited Members
Constructors
SessionMemoryBlock(MemoryAddress, int)
Represents a block of memory space allocated inside a memory segment.
public SessionMemoryBlock(MemoryAddress Address, int Size)
Parameters
AddressMemoryAddressThe start address.
SizeintThe size of the block in bytes.
Properties
Address
The start address.
public MemoryAddress Address { readonly get; set; }
Property Value
Size
The size of the block in bytes.
public int Size { readonly get; set; }