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

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

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