AjScript.Expressions.ConcatenateExpression.Apply C# (CSharp) 메소드

Apply() 공개 메소드

public Apply ( object leftValue, object rightValue ) : object
leftValue object
rightValue object
리턴 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