Microsoft.Scripting.Utils.MathUtils.ModPow C# (CSharp) Метод

ModPow() публичный статический Метод

public static ModPow ( this self, System.Numerics.BigInteger power, System.Numerics.BigInteger mod ) : System.Numerics.BigInteger
self this
power System.Numerics.BigInteger
mod System.Numerics.BigInteger
Результат System.Numerics.BigInteger
        public static BigInt ModPow(this BigInt self, BigInt power, BigInt mod) {
            return BigInt.ModPow(self, power, mod);
        }

Same methods

MathUtils::ModPow ( this self, int power, System.Numerics.BigInteger mod ) : System.Numerics.BigInteger