AjScript.Expressions.ConcatenateExpression.Apply C# (CSharp) Method

Apply() public method

public Apply ( object leftValue, object rightValue ) : object
leftValue object
rightValue object
return object
        public override object Apply(object leftValue, object rightValue)
        {
            if (leftValue == null)
                leftValue = string.Empty;

            if (rightValue == null)
                rightValue = string.Empty;

            return Operators.ConcatenateObject(leftValue, rightValue);
        }
ConcatenateExpression