Table of Contents

Class VBDoubleValue

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

Represents a Double value.

public sealed record VBDoubleValue : VBNumericTypedValue, IEquatable<VBRuntimeEntity>, IEquatable<VBTypedValue>, IComparable<INumericValue>, IEquatable<VBNumericTypedValue>, IVBTypedValue<VBDoubleValue, double>, IEquatable<IVBTypedValue<VBDoubleValue, double>>, INumericValue<VBDoubleValue>, INumericValue, IEquatable<VBDoubleValue>
Inheritance
VBDoubleValue
Implements
Inherited Members

Constructors

VBDoubleValue(Symbol)

Represents a Double value.

public VBDoubleValue(Symbol Symbol)

Parameters

Symbol Symbol

The 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.

ManagedValue

Gets a managed (.net) internal representation the numeric value. This is always a double.

public override double ManagedValue { get; init; }

Property Value

double

Size

The allocated size (in bytes) of this value.

public override int Size { get; }

Property Value

int

Value

Gets the underlying managed value corresponding to this typed value.

public double Value { get; }

Property Value

double

Methods

Equals(IVBTypedValue<VBDoubleValue, double>?)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(IVBTypedValue<VBDoubleValue, double>? other)

Parameters

other IVBTypedValue<VBDoubleValue, double>

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

WithValue(double)

public VBDoubleValue WithValue(double value)

Parameters

value double

Returns

VBDoubleValue