You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xml/System.Numerics/BigInteger.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2886,7 +2886,7 @@ value Mod 2 = 0
2886
2886
## Examples
2887
2887
The following example creates an array of <xref:System.Numerics.BigInteger> values. It then uses each element as the quotient in a division operation that uses the <xref:System.Numerics.BigInteger.Divide%2A> method, the division operator (/), and the <xref:System.Numerics.BigInteger.DivRem%2A> method.
The <xref:System.Numerics.BigInteger.op_OnesComplement%2A> method defines the operation of the bitwise one's complement operator for <xref:System.Numerics.BigInteger> values. The bitwise one's complement operator reverses each bit in a numeric value. That is, bits in `value` that are 0 are set to 1 in the result, and bits that are 1 are set to 0 in the result. The <xref:System.Numerics.BigInteger.op_OnesComplement%2A> method enables code such as the following:
Languages that do not support custom operators may be able to call the <xref:System.Numerics.BigInteger.op_OnesComplement%2A> method directly to perform a bitwise one's complement operation. For example:
@@ -7373,7 +7373,7 @@ If `provider` is `null`, the <xref:System.Globalization.NumberFormatInfo> object
7373
7373
## Examples
7374
7374
The following example compares the remainder from the <xref:System.Numerics.BigInteger.DivRem%2A> method with the remainder returned by the <xref:System.Numerics.BigInteger.Remainder%2A> method to establish that the two methods calculate identical remainders.
@@ -1373,7 +1373,7 @@ The addition of a complex number (a + bi) and a real number (which can be regard
1373
1373
## Examples
1374
1374
The following example instantiates a <xref:System.Numerics.Complex> value by using the <xref:System.Numerics.Complex.ImaginaryOne> property. It then compares this value to another value that is instantiated by calling the <xref:System.Numerics.Complex> constructor with a real part equal to zero and an imaginary part equal to one. As the output from the example shows, the two values are equal.
@@ -3849,7 +3849,7 @@ Languages that do not support custom operators can call the <xref:System.Numeric
3849
3849
## Examples
3850
3850
The following example instantiates an array of <xref:System.Numerics.Complex> objects and displays the real and imaginary components of each in the form a + bi.
@@ -4432,7 +4432,7 @@ Languages that support custom operators can use the <xref:System.Numerics.Comple
4432
4432
## Examples
4433
4433
The following example displays the string representation of several complex numbers. The output uses the formatting conventions of the English - United States ("en-US") culture, which, in this case, is the current system culture.
@@ -4498,7 +4498,7 @@ Languages that support custom operators can use the <xref:System.Numerics.Comple
4498
4498
## Examples
4499
4499
The following example displays the string representation of several complex numbers. The result uses the formatting conventions of the English - United States ("en-US") and French - France ("fr-FR") cultures.
@@ -4643,7 +4643,7 @@ Languages that support custom operators can use the <xref:System.Numerics.Comple
4643
4643
## Examples
4644
4644
The following example creates an array of complex numbers, and displays each using several standard format strings as well as <xref:System.Globalization.CultureInfo> objects that represent the English - United States ("en-US") and French - France ("fr-FR") cultures.
0 commit comments