Table of Contents

Struct MemoryAddress

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

Represents an address in program/session memory.

public record struct MemoryAddress : IEquatable<MemoryAddress>
Implements
Inherited Members

Constructors

MemoryAddress(int)

Represents an address in program/session memory.

public MemoryAddress(int Value)

Parameters

Value int

The address value.

Properties

Value

The address value.

public int Value { readonly get; set; }

Property Value

int

Zero

public static MemoryAddress Zero { get; }

Property Value

MemoryAddress

Methods

ToString()

Returns the fully qualified type name of this instance.

public override readonly string ToString()

Returns

string

The fully qualified type name.

Operators

operator +(MemoryAddress, int)

public static MemoryAddress operator +(MemoryAddress address, int offset)

Parameters

address MemoryAddress
offset int

Returns

MemoryAddress

operator -(MemoryAddress, int)

public static MemoryAddress operator -(MemoryAddress address, int offset)

Parameters

address MemoryAddress
offset int

Returns

MemoryAddress