clojure.lang.Numbers.IntegerOps.quotient C# (CSharp) Метод

quotient() публичный Метод

public quotient ( object x, object y ) : object
x object
y object
Результат object
            public object quotient(object x, object y)
            {
                return Convert.ToInt32(x) / Convert.ToInt32(y);
            }