DartSharp.Expressions.ArithmeticUnaryExpression.Apply C# (CSharp) 메소드

Apply() 공개 메소드

public Apply ( object value ) : object
value object
리턴 object
        public override object Apply(object value)
        {
            if (value == null)
                return value;

            return this.function(value);
        }
ArithmeticUnaryExpression