Class CreateDate
- Namespace
- Albatross.Expression.Prefix
- Assembly
- Albatross.Expression.dll
Prefix operation that create an date
Operand Count: 3
Operands
- year : double
- month : double
- 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
Returns
- object
The result of the function.