Table of Contents

Struct SessionMemoryBlock

Namespace
RDCore.SDK.Runtime.Shared
Assembly
RDCore.SDK.dll

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

Address MemoryAddress

The start address.

Size int

The size of the block in bytes.

Properties

Address

The start address.

public MemoryAddress Address { readonly get; set; }

Property Value

MemoryAddress

Size

The size of the block in bytes.

public int Size { readonly get; set; }

Property Value

int