DataDictionary.Interpreter.ListOperators.SumExpression.GetExpressionType C# (CSharp) Method

GetExpressionType() public method

Provides the type of this expression
public GetExpressionType ( ) : DataDictionary.Types.Type
return DataDictionary.Types.Type
        public override Type GetExpressionType()
        {
            Type retVal = null;

            if (IteratorExpression != null)
            {
                retVal = IteratorExpression.GetExpressionType();
            }

            return retVal;
        }