From 6ce278828d437d32741bb1407dc6981a3051954d Mon Sep 17 00:00:00 2001 From: Maksym Konotop Date: Sun, 19 Oct 2025 22:52:57 +0300 Subject: [PATCH] Incorrect statement in BigInteger.Pow(BigInteger, Int32) remarks (#11815) --- xml/System.Numerics/BigInteger.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/System.Numerics/BigInteger.xml b/xml/System.Numerics/BigInteger.xml index f58f23c1766..244ac9afef8 100644 --- a/xml/System.Numerics/BigInteger.xml +++ b/xml/System.Numerics/BigInteger.xml @@ -9342,7 +9342,7 @@ If `provider` is `null`, the object method returns 1 if the value of the exponent parameter is 0, or if the values of both the `value` and `exponent` parameters are 0. If `exponent` is 1, the method returns `value`. If `value` is negative, the method returns a negative result. + The method returns 1 if the value of the exponent parameter is 0, or if the values of both the `value` and `exponent` parameters are 0. If `exponent` is 1, the method returns `value`. If `value` is negative and exponent is odd, the method returns a negative result. This method corresponds to the method for primitive numeric types.