DartSharp.Expressions.ArithmeticUnaryExpression.Apply C# (CSharp) Method

Apply() public method

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

            return this.function(value);
        }
ArithmeticUnaryExpression