Microsoft.Scripting.Utils.MathUtils.ModPow C# (CSharp) Method

ModPow() public static method

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
return 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