clojure.lang.Numbers.BigIntegerOps.add C# (CSharp) Method

add() public method

public add ( object x, object y ) : object
x object
y object
return object
            public object add(object x, object y)
            {
                return reduce(toBigInteger(x).add(toBigInteger(y)));
            }