namespace com.azkoss.excellite { using System; /// ///Formula token for holding missed argument( argument with no value ) in argument list of function. /// internal class MissArgFormulaToken : FormulaToken { // Methods /// ///Initializes a new instance of the class. /// public MissArgFormulaToken() : base(FormulaTokenCode.MissArg, 1, FormulaTokenType.Operand) { } /// ///Convert formula token to string representation. /// ///formula token string representation public override string ToString() { return string.Empty; } } }