Table of Contents

Interface INumericValue

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

Represents any numeric value with a non-generic interface.

public interface INumericValue

Properties

ManagedValue

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

double ManagedValue { get; }

Property Value

double

Methods

WithValue(double)

Gets a copy of this value, with the specified underlying value.

INumericValue WithValue(double value)

Parameters

value double

The managed value of the numeric value to be produced.

Returns

INumericValue

Remarks

💥Overflow may be raised as specified in the appropraite run-time semantics if the specified value is outside the bounds representable by the VBType.