Table of Contents

Class VBMissingValue

Namespace
RDCore.SDK.Model.Values.Intrinsic
Assembly
RDCore.SDK.dll

Represents a Variant/Missing value.

public sealed record VBMissingValue : VBTypedValue, IEquatable<VBRuntimeEntity>, IEquatable<VBTypedValue>, IEquatable<VBMissingValue>
Inheritance
VBMissingValue
Implements
Inherited Members

Constructors

VBMissingValue(Symbol)

Represents a Variant/Missing value.

public VBMissingValue(Symbol Symbol)

Parameters

Symbol Symbol

The optional variant parameter symbol associated with this value.

Properties

BoxedValue

Gets the boxed (object) underlying managed value.

public override object BoxedValue { get; }

Property Value

object

Remarks

👉 This member is provided as a non-generic convenience for contexts where the type is unknown. Use the generic ITypedValue<T> whenever possible instead.

Missing

public static VBMissingValue Missing { get; }

Property Value

VBMissingValue

Size

The allocated size (in bytes) of this value.

public override int Size { get; }

Property Value

int

Symbol

The optional variant parameter symbol associated with this value.

public Symbol Symbol { get; init; }

Property Value

Symbol