Table of Contents

Class CreateDate

Namespace
Albatross.Expression.Prefix
Assembly
Albatross.Expression.dll

Prefix operation that create an date

Operand Count: 3

Operands

  1. year : double
  2. month : double
  3. day : double

Operand Type: int

Output Type: System.DateTime

Usage: CreateDate(2018, 1, 31)

public class CreateDate : PrefixExpression, IPrefixExpression, IExpression, IToken
Inheritance
CreateDate
Implements
Inherited Members
Extension Methods

Constructors

CreateDate()

public CreateDate()

Methods

Run(List<object>)

Executes the prefix function with the evaluated operand values. Derived classes should override this method to implement specific function logic.

protected override object Run(List<object> operands)

Parameters

operands List<object>

The list of evaluated operand values.

Returns

object

The result of the function.