Revert "PR-5360"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Runtime.Numerics.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Runtime.Numerics</name>
5   </assembly>
6   <members>
7     <member name="T:System.Numerics.BigInteger">
8       <summary>Represents an arbitrarily large signed integer.</summary>
9     </member>
10     <member name="M:System.Numerics.BigInteger.#ctor(System.Byte[])">
11       <summary>Initializes a new instance of the <see cref="T:System.Numerics.BigInteger" /> structure using the values in a byte array.</summary>
12       <param name="value">An array of byte values in little-endian order.</param>
13       <exception cref="T:System.ArgumentNullException">
14         <paramref name="value" /> is <see langword="null" />.</exception>
15     </member>
16     <member name="M:System.Numerics.BigInteger.#ctor(System.Decimal)">
17       <summary>Initializes a new instance of the <see cref="T:System.Numerics.BigInteger" /> structure using a <see cref="T:System.Decimal" /> value.</summary>
18       <param name="value">A decimal number.</param>
19     </member>
20     <member name="M:System.Numerics.BigInteger.#ctor(System.Double)">
21       <summary>Initializes a new instance of the <see cref="T:System.Numerics.BigInteger" /> structure using a double-precision floating-point value.</summary>
22       <param name="value">A double-precision floating-point value.</param>
23       <exception cref="T:System.OverflowException">
24         <paramref name="value" /> is <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />.</exception>
25     </member>
26     <member name="M:System.Numerics.BigInteger.#ctor(System.Int32)">
27       <summary>Initializes a new instance of the <see cref="T:System.Numerics.BigInteger" /> structure using a 32-bit signed integer value.</summary>
28       <param name="value">A 32-bit signed integer.</param>
29     </member>
30     <member name="M:System.Numerics.BigInteger.#ctor(System.Int64)">
31       <summary>Initializes a new instance of the <see cref="T:System.Numerics.BigInteger" /> structure using a 64-bit signed integer value.</summary>
32       <param name="value">A 64-bit signed integer.</param>
33     </member>
34     <member name="M:System.Numerics.BigInteger.#ctor(System.ReadOnlySpan{System.Byte},System.Boolean,System.Boolean)">
35       <param name="value" />
36       <param name="isUnsigned" />
37       <param name="isBigEndian" />
38     </member>
39     <member name="M:System.Numerics.BigInteger.#ctor(System.Single)">
40       <summary>Initializes a new instance of the <see cref="T:System.Numerics.BigInteger" /> structure using a single-precision floating-point value.</summary>
41       <param name="value">A single-precision floating-point value.</param>
42       <exception cref="T:System.OverflowException">
43         <paramref name="value" /> is <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NegativeInfinity" />, or <see cref="F:System.Single.PositiveInfinity" />.</exception>
44     </member>
45     <member name="M:System.Numerics.BigInteger.#ctor(System.UInt32)">
46       <summary>Initializes a new instance of the <see cref="T:System.Numerics.BigInteger" /> structure using an unsigned 32-bit integer value.</summary>
47       <param name="value">An unsigned 32-bit integer value.</param>
48     </member>
49     <member name="M:System.Numerics.BigInteger.#ctor(System.UInt64)">
50       <summary>Initializes a new instance of the <see cref="T:System.Numerics.BigInteger" /> structure with an unsigned 64-bit integer value.</summary>
51       <param name="value">An unsigned 64-bit integer.</param>
52     </member>
53     <member name="M:System.Numerics.BigInteger.Abs(System.Numerics.BigInteger)">
54       <summary>Gets the absolute value of a <see cref="T:System.Numerics.BigInteger" /> object.</summary>
55       <param name="value">A number.</param>
56       <returns>The absolute value of <paramref name="value" />.</returns>
57     </member>
58     <member name="M:System.Numerics.BigInteger.Add(System.Numerics.BigInteger,System.Numerics.BigInteger)">
59       <summary>Adds two <see cref="T:System.Numerics.BigInteger" /> values and returns the result.</summary>
60       <param name="left">The first value to add.</param>
61       <param name="right">The second value to add.</param>
62       <returns>The sum of <paramref name="left" /> and <paramref name="right" />.</returns>
63     </member>
64     <member name="M:System.Numerics.BigInteger.Compare(System.Numerics.BigInteger,System.Numerics.BigInteger)">
65       <summary>Compares two <see cref="T:System.Numerics.BigInteger" /> values and returns an integer that indicates whether the first value is less than, equal to, or greater than the second value.</summary>
66       <param name="left">The first value to compare.</param>
67       <param name="right">The second value to compare.</param>
68       <returns>A signed integer that indicates the relative values of <paramref name="left" /> and <paramref name="right" />, as shown in the following table.
69   Value  
70   
71   Condition  
72   
73   Less than zero  
74   
75  <paramref name="left" /> is less than <paramref name="right" />.  
76   
77   Zero  
78   
79  <paramref name="left" /> equals <paramref name="right" />.  
80   
81   Greater than zero  
82   
83  <paramref name="left" /> is greater than <paramref name="right" />.</returns>
84     </member>
85     <member name="M:System.Numerics.BigInteger.CompareTo(System.Int64)">
86       <summary>Compares this instance to a signed 64-bit integer and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the signed 64-bit integer.</summary>
87       <param name="other">The signed 64-bit integer to compare.</param>
88       <returns>A signed integer value that indicates the relationship of this instance to <paramref name="other" />, as shown in the following table.
89   Return value  
90   
91   Description  
92   
93   Less than zero  
94   
95   The current instance is less than <paramref name="other" />.  
96   
97   Zero  
98   
99   The current instance equals <paramref name="other" />.  
100   
101   Greater than zero  
102   
103   The current instance is greater than <paramref name="other" />.</returns>
104     </member>
105     <member name="M:System.Numerics.BigInteger.CompareTo(System.Numerics.BigInteger)">
106       <summary>Compares this instance to a second <see cref="T:System.Numerics.BigInteger" /> and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified object.</summary>
107       <param name="other">The object to compare.</param>
108       <returns>A signed integer value that indicates the relationship of this instance to <paramref name="other" />, as shown in the following table.
109   Return value  
110   
111   Description  
112   
113   Less than zero  
114   
115   The current instance is less than <paramref name="other" />.  
116   
117   Zero  
118   
119   The current instance equals <paramref name="other" />.  
120   
121   Greater than zero  
122   
123   The current instance is greater than <paramref name="other" />.</returns>
124     </member>
125     <member name="M:System.Numerics.BigInteger.CompareTo(System.Object)">
126       <summary>Compares this instance to a specified object and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified object.</summary>
127       <param name="obj">The object to compare.</param>
128       <returns>A signed integer that indicates the relationship of the current instance to the <paramref name="obj" /> parameter, as shown in the following table.
129   Return value  
130   
131   Description  
132   
133   Less than zero  
134   
135   The current instance is less than <paramref name="obj" />.  
136   
137   Zero  
138   
139   The current instance equals <paramref name="obj" />.  
140   
141   Greater than zero  
142   
143   The current instance is greater than <paramref name="obj" />, or the <paramref name="obj" /> parameter is <see langword="null" />.</returns>
144       <exception cref="T:System.ArgumentException">
145         <paramref name="obj" /> is not a <see cref="T:System.Numerics.BigInteger" />.</exception>
146     </member>
147     <member name="M:System.Numerics.BigInteger.CompareTo(System.UInt64)">
148       <summary>Compares this instance to an unsigned 64-bit integer and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the unsigned 64-bit integer.</summary>
149       <param name="other">The unsigned 64-bit integer to compare.</param>
150       <returns>A signed integer that indicates the relative value of this instance and <paramref name="other" />, as shown in the following table.
151   Return value  
152   
153   Description  
154   
155   Less than zero  
156   
157   The current instance is less than <paramref name="other" />.  
158   
159   Zero  
160   
161   The current instance equals <paramref name="other" />.  
162   
163   Greater than zero  
164   
165   The current instance is greater than <paramref name="other" />.</returns>
166     </member>
167     <member name="M:System.Numerics.BigInteger.Divide(System.Numerics.BigInteger,System.Numerics.BigInteger)">
168       <summary>Divides one <see cref="T:System.Numerics.BigInteger" /> value by another and returns the result.</summary>
169       <param name="dividend">The value to be divided.</param>
170       <param name="divisor">The value to divide by.</param>
171       <returns>The quotient of the division.</returns>
172       <exception cref="T:System.DivideByZeroException">
173         <paramref name="divisor" /> is 0 (zero).</exception>
174     </member>
175     <member name="M:System.Numerics.BigInteger.DivRem(System.Numerics.BigInteger,System.Numerics.BigInteger,System.Numerics.BigInteger@)">
176       <summary>Divides one <see cref="T:System.Numerics.BigInteger" /> value by another, returns the result, and returns the remainder in an output parameter.</summary>
177       <param name="dividend">The value to be divided.</param>
178       <param name="divisor">The value to divide by.</param>
179       <param name="remainder">When this method returns, contains a <see cref="T:System.Numerics.BigInteger" /> value that represents the remainder from the division. This parameter is passed uninitialized.</param>
180       <returns>The quotient of the division.</returns>
181       <exception cref="T:System.DivideByZeroException">
182         <paramref name="divisor" /> is 0 (zero).</exception>
183     </member>
184     <member name="M:System.Numerics.BigInteger.Equals(System.Int64)">
185       <summary>Returns a value that indicates whether the current instance and a signed 64-bit integer have the same value.</summary>
186       <param name="other">The signed 64-bit integer value to compare.</param>
187       <returns>
188         <see langword="true" /> if the signed 64-bit integer and the current instance have the same value; otherwise, <see langword="false" />.</returns>
189     </member>
190     <member name="M:System.Numerics.BigInteger.Equals(System.Numerics.BigInteger)">
191       <summary>Returns a value that indicates whether the current instance and a specified <see cref="T:System.Numerics.BigInteger" /> object have the same value.</summary>
192       <param name="other">The object to compare.</param>
193       <returns>
194         <see langword="true" /> if this <see cref="T:System.Numerics.BigInteger" /> object and <paramref name="other" /> have the same value; otherwise, <see langword="false" />.</returns>
195     </member>
196     <member name="M:System.Numerics.BigInteger.Equals(System.Object)">
197       <summary>Returns a value that indicates whether the current instance and a specified object have the same value.</summary>
198       <param name="obj">The object to compare.</param>
199       <returns>
200         <see langword="true" /> if the <paramref name="obj" /> argument is a <see cref="T:System.Numerics.BigInteger" /> object, and its value is equal to the value of the current <see cref="T:System.Numerics.BigInteger" /> instance; otherwise, <see langword="false" />.</returns>
201     </member>
202     <member name="M:System.Numerics.BigInteger.Equals(System.UInt64)">
203       <summary>Returns a value that indicates whether the current instance and an unsigned 64-bit integer have the same value.</summary>
204       <param name="other">The unsigned 64-bit integer to compare.</param>
205       <returns>
206         <see langword="true" /> if the current instance and the unsigned 64-bit integer have the same value; otherwise, <see langword="false" />.</returns>
207     </member>
208     <member name="M:System.Numerics.BigInteger.GetByteCount(System.Boolean)">
209       <summary>Gets the number of bytes that will be output by <see cref="M:System.Numerics.BigInteger.ToByteArray(System.Boolean,System.Boolean)" /> and <see cref="M:System.Numerics.BigInteger.TryWriteBytes(System.Span{System.Byte},System.Int32@,System.Boolean,System.Boolean)" />.</summary>
210       <param name="isUnsigned">
211         <see langword="true" /> to use unsigned encoding; otherwise, <see langword="false" />.</param>
212       <returns>The number of bytes.</returns>
213     </member>
214     <member name="M:System.Numerics.BigInteger.GetHashCode">
215       <summary>Returns the hash code for the current <see cref="T:System.Numerics.BigInteger" /> object.</summary>
216       <returns>A 32-bit signed integer hash code.</returns>
217     </member>
218     <member name="M:System.Numerics.BigInteger.GreatestCommonDivisor(System.Numerics.BigInteger,System.Numerics.BigInteger)">
219       <summary>Finds the greatest common divisor of two <see cref="T:System.Numerics.BigInteger" /> values.</summary>
220       <param name="left">The first value.</param>
221       <param name="right">The second value.</param>
222       <returns>The greatest common divisor of <paramref name="left" /> and <paramref name="right" />.</returns>
223     </member>
224     <member name="P:System.Numerics.BigInteger.IsEven">
225       <summary>Indicates whether the value of the current <see cref="T:System.Numerics.BigInteger" /> object is an even number.</summary>
226       <returns>
227         <see langword="true" /> if the value of the <see cref="T:System.Numerics.BigInteger" /> object is an even number; otherwise, <see langword="false" />.</returns>
228     </member>
229     <member name="P:System.Numerics.BigInteger.IsOne">
230       <summary>Indicates whether the value of the current <see cref="T:System.Numerics.BigInteger" /> object is <see cref="P:System.Numerics.BigInteger.One" />.</summary>
231       <returns>
232         <see langword="true" /> if the value of the <see cref="T:System.Numerics.BigInteger" /> object is <see cref="P:System.Numerics.BigInteger.One" />; otherwise, <see langword="false" />.</returns>
233     </member>
234     <member name="P:System.Numerics.BigInteger.IsPowerOfTwo">
235       <summary>Indicates whether the value of the current <see cref="T:System.Numerics.BigInteger" /> object is a power of two.</summary>
236       <returns>
237         <see langword="true" /> if the value of the <see cref="T:System.Numerics.BigInteger" /> object is a power of two; otherwise, <see langword="false" />.</returns>
238     </member>
239     <member name="P:System.Numerics.BigInteger.IsZero">
240       <summary>Indicates whether the value of the current <see cref="T:System.Numerics.BigInteger" /> object is <see cref="P:System.Numerics.BigInteger.Zero" />.</summary>
241       <returns>
242         <see langword="true" /> if the value of the <see cref="T:System.Numerics.BigInteger" /> object is <see cref="P:System.Numerics.BigInteger.Zero" />; otherwise, <see langword="false" />.</returns>
243     </member>
244     <member name="M:System.Numerics.BigInteger.Log(System.Numerics.BigInteger)">
245       <summary>Returns the natural (base <see langword="e" />) logarithm of a specified number.</summary>
246       <param name="value">The number whose logarithm is to be found.</param>
247       <returns>The natural (base <see langword="e" />) logarithm of <paramref name="value" />, as shown in the table in the Remarks section.</returns>
248       <exception cref="T:System.ArgumentOutOfRangeException">The natural log of <paramref name="value" /> is out of range of the <see cref="T:System.Double" /> data type.</exception>
249     </member>
250     <member name="M:System.Numerics.BigInteger.Log(System.Numerics.BigInteger,System.Double)">
251       <summary>Returns the logarithm of a specified number in a specified base.</summary>
252       <param name="value">A number whose logarithm is to be found.</param>
253       <param name="baseValue">The base of the logarithm.</param>
254       <returns>The base <paramref name="baseValue" /> logarithm of <paramref name="value" />, as shown in the table in the Remarks section.</returns>
255       <exception cref="T:System.ArgumentOutOfRangeException">The log of <paramref name="value" /> is out of range of the <see cref="T:System.Double" /> data type.</exception>
256     </member>
257     <member name="M:System.Numerics.BigInteger.Log10(System.Numerics.BigInteger)">
258       <summary>Returns the base 10 logarithm of a specified number.</summary>
259       <param name="value">A number whose logarithm is to be found.</param>
260       <returns>The base 10 logarithm of <paramref name="value" />, as shown in the table in the Remarks section.</returns>
261       <exception cref="T:System.ArgumentOutOfRangeException">The base 10 log of <paramref name="value" /> is out of range of the <see cref="T:System.Double" /> data type.</exception>
262     </member>
263     <member name="M:System.Numerics.BigInteger.Max(System.Numerics.BigInteger,System.Numerics.BigInteger)">
264       <summary>Returns the larger of two <see cref="T:System.Numerics.BigInteger" /> values.</summary>
265       <param name="left">The first value to compare.</param>
266       <param name="right">The second value to compare.</param>
267       <returns>The <paramref name="left" /> or <paramref name="right" /> parameter, whichever is larger.</returns>
268     </member>
269     <member name="M:System.Numerics.BigInteger.Min(System.Numerics.BigInteger,System.Numerics.BigInteger)">
270       <summary>Returns the smaller of two <see cref="T:System.Numerics.BigInteger" /> values.</summary>
271       <param name="left">The first value to compare.</param>
272       <param name="right">The second value to compare.</param>
273       <returns>The <paramref name="left" /> or <paramref name="right" /> parameter, whichever is smaller.</returns>
274     </member>
275     <member name="P:System.Numerics.BigInteger.MinusOne">
276       <summary>Gets a value that represents the number negative one (-1).</summary>
277       <returns>An integer whose value is negative one (-1).</returns>
278     </member>
279     <member name="M:System.Numerics.BigInteger.ModPow(System.Numerics.BigInteger,System.Numerics.BigInteger,System.Numerics.BigInteger)">
280       <summary>Performs modulus division on a number raised to the power of another number.</summary>
281       <param name="value">The number to raise to the <paramref name="exponent" /> power.</param>
282       <param name="exponent">The exponent to raise <paramref name="value" /> by.</param>
283       <param name="modulus">The number by which to divide <paramref name="value" /> raised to the <paramref name="exponent" /> power.</param>
284       <returns>The remainder after dividing <paramref name="value" />exponent by <paramref name="modulus" />.</returns>
285       <exception cref="T:System.DivideByZeroException">
286         <paramref name="modulus" /> is zero.</exception>
287       <exception cref="T:System.ArgumentOutOfRangeException">
288         <paramref name="exponent" /> is negative.</exception>
289     </member>
290     <member name="M:System.Numerics.BigInteger.Multiply(System.Numerics.BigInteger,System.Numerics.BigInteger)">
291       <summary>Returns the product of two <see cref="T:System.Numerics.BigInteger" /> values.</summary>
292       <param name="left">The first number to multiply.</param>
293       <param name="right">The second number to multiply.</param>
294       <returns>The product of the <paramref name="left" /> and <paramref name="right" /> parameters.</returns>
295     </member>
296     <member name="M:System.Numerics.BigInteger.Negate(System.Numerics.BigInteger)">
297       <summary>Negates a specified <see cref="T:System.Numerics.BigInteger" /> value.</summary>
298       <param name="value">The value to negate.</param>
299       <returns>The result of the <paramref name="value" /> parameter multiplied by negative one (-1).</returns>
300     </member>
301     <member name="P:System.Numerics.BigInteger.One">
302       <summary>Gets a value that represents the number one (1).</summary>
303       <returns>An object whose value is one (1).</returns>
304     </member>
305     <member name="M:System.Numerics.BigInteger.op_Addition(System.Numerics.BigInteger,System.Numerics.BigInteger)">
306       <summary>Adds the values of two specified <see cref="T:System.Numerics.BigInteger" /> objects.</summary>
307       <param name="left">The first value to add.</param>
308       <param name="right">The second value to add.</param>
309       <returns>The sum of <paramref name="left" /> and <paramref name="right" />.</returns>
310     </member>
311     <member name="M:System.Numerics.BigInteger.op_BitwiseAnd(System.Numerics.BigInteger,System.Numerics.BigInteger)">
312       <summary>Performs a bitwise <see langword="And" /> operation on two <see cref="T:System.Numerics.BigInteger" /> values.</summary>
313       <param name="left">The first value.</param>
314       <param name="right">The second value.</param>
315       <returns>The result of the bitwise <see langword="And" /> operation.</returns>
316     </member>
317     <member name="M:System.Numerics.BigInteger.op_BitwiseOr(System.Numerics.BigInteger,System.Numerics.BigInteger)">
318       <summary>Performs a bitwise <see langword="Or" /> operation on two <see cref="T:System.Numerics.BigInteger" /> values.</summary>
319       <param name="left">The first value.</param>
320       <param name="right">The second value.</param>
321       <returns>The result of the bitwise <see langword="Or" /> operation.</returns>
322     </member>
323     <member name="M:System.Numerics.BigInteger.op_Decrement(System.Numerics.BigInteger)">
324       <summary>Decrements a <see cref="T:System.Numerics.BigInteger" /> value by 1.</summary>
325       <param name="value">The value to decrement.</param>
326       <returns>The value of the <paramref name="value" /> parameter decremented by 1.</returns>
327     </member>
328     <member name="M:System.Numerics.BigInteger.op_Division(System.Numerics.BigInteger,System.Numerics.BigInteger)">
329       <summary>Divides a specified <see cref="T:System.Numerics.BigInteger" /> value by another specified <see cref="T:System.Numerics.BigInteger" /> value by using integer division.</summary>
330       <param name="dividend">The value to be divided.</param>
331       <param name="divisor">The value to divide by.</param>
332       <returns>The integral result of the division.</returns>
333       <exception cref="T:System.DivideByZeroException">
334         <paramref name="divisor" /> is 0 (zero).</exception>
335     </member>
336     <member name="M:System.Numerics.BigInteger.op_Equality(System.Int64,System.Numerics.BigInteger)">
337       <summary>Returns a value that indicates whether a signed long integer value and a <see cref="T:System.Numerics.BigInteger" /> value are equal.</summary>
338       <param name="left">The first value to compare.</param>
339       <param name="right">The second value to compare.</param>
340       <returns>
341         <see langword="true" /> if the <paramref name="left" /> and <paramref name="right" /> parameters have the same value; otherwise, <see langword="false" />.</returns>
342     </member>
343     <member name="M:System.Numerics.BigInteger.op_Equality(System.Numerics.BigInteger,System.Int64)">
344       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value and a signed long integer value are equal.</summary>
345       <param name="left">The first value to compare.</param>
346       <param name="right">The second value to compare.</param>
347       <returns>
348         <see langword="true" /> if the <paramref name="left" /> and <paramref name="right" /> parameters have the same value; otherwise, <see langword="false" />.</returns>
349     </member>
350     <member name="M:System.Numerics.BigInteger.op_Equality(System.Numerics.BigInteger,System.Numerics.BigInteger)">
351       <summary>Returns a value that indicates whether the values of two <see cref="T:System.Numerics.BigInteger" /> objects are equal.</summary>
352       <param name="left">The first value to compare.</param>
353       <param name="right">The second value to compare.</param>
354       <returns>
355         <see langword="true" /> if the <paramref name="left" /> and <paramref name="right" /> parameters have the same value; otherwise, <see langword="false" />.</returns>
356     </member>
357     <member name="M:System.Numerics.BigInteger.op_Equality(System.Numerics.BigInteger,System.UInt64)">
358       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value and an unsigned long integer value are equal.</summary>
359       <param name="left">The first value to compare.</param>
360       <param name="right">The second value to compare.</param>
361       <returns>
362         <see langword="true" /> if the <paramref name="left" /> and <paramref name="right" /> parameters have the same value; otherwise, <see langword="false" />.</returns>
363     </member>
364     <member name="M:System.Numerics.BigInteger.op_Equality(System.UInt64,System.Numerics.BigInteger)">
365       <summary>Returns a value that indicates whether an unsigned long integer value and a <see cref="T:System.Numerics.BigInteger" /> value are equal.</summary>
366       <param name="left">The first value to compare.</param>
367       <param name="right">The second value to compare.</param>
368       <returns>
369         <see langword="true" /> if the <paramref name="left" /> and <paramref name="right" /> parameters have the same value; otherwise, <see langword="false" />.</returns>
370     </member>
371     <member name="M:System.Numerics.BigInteger.op_ExclusiveOr(System.Numerics.BigInteger,System.Numerics.BigInteger)">
372       <summary>Performs a bitwise exclusive <see langword="Or" /> (<see langword="XOr" />) operation on two <see cref="T:System.Numerics.BigInteger" /> values.</summary>
373       <param name="left">The first value.</param>
374       <param name="right">The second value.</param>
375       <returns>The result of the bitwise <see langword="Or" /> operation.</returns>
376     </member>
377     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Decimal)~System.Numerics.BigInteger">
378       <summary>Defines an explicit conversion of a <see cref="T:System.Decimal" /> object to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
379       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
380       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
381     </member>
382     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Double)~System.Numerics.BigInteger">
383       <summary>Defines an explicit conversion of a <see cref="T:System.Double" /> value to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
384       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
385       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
386       <exception cref="T:System.OverflowException">
387         <paramref name="value" /> is <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.PositiveInfinity" />, or <see cref="F:System.Double.NegativeInfinity" />.</exception>
388     </member>
389     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.Byte">
390       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to an unsigned byte value.</summary>
391       <param name="value">The value to convert to a <see cref="T:System.Byte" />.</param>
392       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
393       <exception cref="T:System.OverflowException">
394         <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
395     </member>
396     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.Decimal">
397       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to a <see cref="T:System.Decimal" /> value.</summary>
398       <param name="value">The value to convert to a <see cref="T:System.Decimal" />.</param>
399       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
400       <exception cref="T:System.OverflowException">
401         <paramref name="value" /> is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
402     </member>
403     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.Double">
404       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to a <see cref="T:System.Double" /> value.</summary>
405       <param name="value">The value to convert to a <see cref="T:System.Double" />.</param>
406       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
407     </member>
408     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.Int16">
409       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to a 16-bit signed integer value.</summary>
410       <param name="value">The value to convert to a 16-bit signed integer.</param>
411       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
412       <exception cref="T:System.OverflowException">
413         <paramref name="value" /> is less than <see cref="F:System.Int16.MinValue" /> or is greater than <see cref="F:System.Int16.MaxValue" />.</exception>
414     </member>
415     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.Int32">
416       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to a 32-bit signed integer value.</summary>
417       <param name="value">The value to convert to a 32-bit signed integer.</param>
418       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
419       <exception cref="T:System.OverflowException">
420         <paramref name="value" /> is less than <see cref="F:System.Int32.MinValue" /> or is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
421     </member>
422     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.Int64">
423       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to a 64-bit signed integer value.</summary>
424       <param name="value">The value to convert to a 64-bit signed integer.</param>
425       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
426       <exception cref="T:System.OverflowException">
427         <paramref name="value" /> is less than <see cref="F:System.Int64.MinValue" /> or is greater than <see cref="F:System.Int64.MaxValue" />.</exception>
428     </member>
429     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.SByte">
430       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to a signed 8-bit value.
431 This API is not CLS-compliant. The compliant alternative is <see cref="T:System.Int16" />.</summary>
432       <param name="value">The value to convert to a signed 8-bit value.</param>
433       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
434       <exception cref="T:System.OverflowException">
435         <paramref name="value" /> is less than <see cref="F:System.SByte.MinValue" /> or is greater than <see cref="F:System.SByte.MaxValue" />.</exception>
436     </member>
437     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.Single">
438       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to a single-precision floating-point value.</summary>
439       <param name="value">The value to convert to a single-precision floating-point value.</param>
440       <returns>An object that contains the closest possible representation of the <paramref name="value" /> parameter.</returns>
441     </member>
442     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.UInt16">
443       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to an unsigned 16-bit integer value.
444 This API is not CLS-compliant. The compliant alternative is <see cref="T:System.Int32" />.</summary>
445       <param name="value">The value to convert to an unsigned 16-bit integer.</param>
446       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
447       <exception cref="T:System.OverflowException">
448         <paramref name="value" /> is less than <see cref="F:System.UInt16.MinValue" /> or is greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
449     </member>
450     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.UInt32">
451       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to an unsigned 32-bit integer value.
452 This API is not CLS-compliant. The compliant alternative is <see cref="T:System.Int64" />.</summary>
453       <param name="value">The value to convert to an unsigned 32-bit integer.</param>
454       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
455       <exception cref="T:System.OverflowException">
456         <paramref name="value" /> is less than <see cref="F:System.UInt32.MinValue" /> or is greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
457     </member>
458     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Numerics.BigInteger)~System.UInt64">
459       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> object to an unsigned 64-bit integer value.
460 This API is not CLS-compliant. The compliant alternative is <see cref="T:System.Double" />.</summary>
461       <param name="value">The value to convert to an unsigned 64-bit integer.</param>
462       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
463       <exception cref="T:System.OverflowException">
464         <paramref name="value" /> is less than <see cref="F:System.UInt64.MinValue" /> or is greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
465     </member>
466     <member name="M:System.Numerics.BigInteger.op_Explicit(System.Single)~System.Numerics.BigInteger">
467       <summary>Defines an explicit conversion of a <see cref="T:System.Single" /> value to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
468       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
469       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
470       <exception cref="T:System.OverflowException">
471         <paramref name="value" /> is <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.PositiveInfinity" />, or <see cref="F:System.Single.NegativeInfinity" />.</exception>
472     </member>
473     <member name="M:System.Numerics.BigInteger.op_GreaterThan(System.Int64,System.Numerics.BigInteger)">
474       <summary>Returns a value that indicates whether a 64-bit signed integer is greater than a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
475       <param name="left">The first value to compare.</param>
476       <param name="right">The second value to compare.</param>
477       <returns>
478         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
479     </member>
480     <member name="M:System.Numerics.BigInteger.op_GreaterThan(System.Numerics.BigInteger,System.Int64)">
481       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> is greater than a 64-bit signed integer value.</summary>
482       <param name="left">The first value to compare.</param>
483       <param name="right">The second value to compare.</param>
484       <returns>
485         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
486     </member>
487     <member name="M:System.Numerics.BigInteger.op_GreaterThan(System.Numerics.BigInteger,System.Numerics.BigInteger)">
488       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is greater than another <see cref="T:System.Numerics.BigInteger" /> value.</summary>
489       <param name="left">The first value to compare.</param>
490       <param name="right">The second value to compare.</param>
491       <returns>
492         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
493     </member>
494     <member name="M:System.Numerics.BigInteger.op_GreaterThan(System.Numerics.BigInteger,System.UInt64)">
495       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is greater than a 64-bit unsigned integer.</summary>
496       <param name="left">The first value to compare.</param>
497       <param name="right">The second value to compare.</param>
498       <returns>
499         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
500     </member>
501     <member name="M:System.Numerics.BigInteger.op_GreaterThan(System.UInt64,System.Numerics.BigInteger)">
502       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is greater than a 64-bit unsigned integer.</summary>
503       <param name="left">The first value to compare.</param>
504       <param name="right">The second value to compare.</param>
505       <returns>
506         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
507     </member>
508     <member name="M:System.Numerics.BigInteger.op_GreaterThanOrEqual(System.Int64,System.Numerics.BigInteger)">
509       <summary>Returns a value that indicates whether a 64-bit signed integer is greater than or equal to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
510       <param name="left">The first value to compare.</param>
511       <param name="right">The second value to compare.</param>
512       <returns>
513         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
514     </member>
515     <member name="M:System.Numerics.BigInteger.op_GreaterThanOrEqual(System.Numerics.BigInteger,System.Int64)">
516       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is greater than or equal to a 64-bit signed integer value.</summary>
517       <param name="left">The first value to compare.</param>
518       <param name="right">The second value to compare.</param>
519       <returns>
520         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
521     </member>
522     <member name="M:System.Numerics.BigInteger.op_GreaterThanOrEqual(System.Numerics.BigInteger,System.Numerics.BigInteger)">
523       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is greater than or equal to another <see cref="T:System.Numerics.BigInteger" /> value.</summary>
524       <param name="left">The first value to compare.</param>
525       <param name="right">The second value to compare.</param>
526       <returns>
527         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
528     </member>
529     <member name="M:System.Numerics.BigInteger.op_GreaterThanOrEqual(System.Numerics.BigInteger,System.UInt64)">
530       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is greater than or equal to a 64-bit unsigned integer value.</summary>
531       <param name="left">The first value to compare.</param>
532       <param name="right">The second value to compare.</param>
533       <returns>
534         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
535     </member>
536     <member name="M:System.Numerics.BigInteger.op_GreaterThanOrEqual(System.UInt64,System.Numerics.BigInteger)">
537       <summary>Returns a value that indicates whether a 64-bit unsigned integer is greater than or equal to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
538       <param name="left">The first value to compare.</param>
539       <param name="right">The second value to compare.</param>
540       <returns>
541         <see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
542     </member>
543     <member name="M:System.Numerics.BigInteger.op_Implicit(System.Byte)~System.Numerics.BigInteger">
544       <summary>Defines an implicit conversion of an unsigned byte to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
545       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
546       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
547     </member>
548     <member name="M:System.Numerics.BigInteger.op_Implicit(System.Int16)~System.Numerics.BigInteger">
549       <summary>Defines an implicit conversion of a signed 16-bit integer to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
550       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
551       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
552     </member>
553     <member name="M:System.Numerics.BigInteger.op_Implicit(System.Int32)~System.Numerics.BigInteger">
554       <summary>Defines an implicit conversion of a signed 32-bit integer to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
555       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
556       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
557     </member>
558     <member name="M:System.Numerics.BigInteger.op_Implicit(System.Int64)~System.Numerics.BigInteger">
559       <summary>Defines an implicit conversion of a signed 64-bit integer to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
560       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
561       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
562     </member>
563     <member name="M:System.Numerics.BigInteger.op_Implicit(System.SByte)~System.Numerics.BigInteger">
564       <summary>Defines an implicit conversion of an 8-bit signed integer to a <see cref="T:System.Numerics.BigInteger" /> value.
565 This API is not CLS-compliant. The compliant alternative is <see cref="M:System.Numerics.BigInteger.#ctor(System.Int32)" />.</summary>
566       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
567       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
568     </member>
569     <member name="M:System.Numerics.BigInteger.op_Implicit(System.UInt16)~System.Numerics.BigInteger">
570       <summary>Defines an implicit conversion of a 16-bit unsigned integer to a <see cref="T:System.Numerics.BigInteger" /> value.
571 This API is not CLS-compliant. The compliant alternative is <see cref="M:System.Numerics.BigInteger.op_Implicit(System.Int32)~System.Numerics.BigInteger" />.</summary>
572       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
573       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
574     </member>
575     <member name="M:System.Numerics.BigInteger.op_Implicit(System.UInt32)~System.Numerics.BigInteger">
576       <summary>Defines an implicit conversion of a 32-bit unsigned integer to a <see cref="T:System.Numerics.BigInteger" /> value.
577 This API is not CLS-compliant. The compliant alternative is <see cref="M:System.Numerics.BigInteger.op_Implicit(System.Int64)~System.Numerics.BigInteger" />.</summary>
578       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
579       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
580     </member>
581     <member name="M:System.Numerics.BigInteger.op_Implicit(System.UInt64)~System.Numerics.BigInteger">
582       <summary>Defines an implicit conversion of a 64-bit unsigned integer to a <see cref="T:System.Numerics.BigInteger" /> value.
583 This API is not CLS-compliant. The compliant alternative is <see cref="T:System.Double" />.</summary>
584       <param name="value">The value to convert to a <see cref="T:System.Numerics.BigInteger" />.</param>
585       <returns>An object that contains the value of the <paramref name="value" /> parameter.</returns>
586     </member>
587     <member name="M:System.Numerics.BigInteger.op_Increment(System.Numerics.BigInteger)">
588       <summary>Increments a <see cref="T:System.Numerics.BigInteger" /> value by 1.</summary>
589       <param name="value">The value to increment.</param>
590       <returns>The value of the <paramref name="value" /> parameter incremented by 1.</returns>
591     </member>
592     <member name="M:System.Numerics.BigInteger.op_Inequality(System.Int64,System.Numerics.BigInteger)">
593       <summary>Returns a value that indicates whether a 64-bit signed integer and a <see cref="T:System.Numerics.BigInteger" /> value are not equal.</summary>
594       <param name="left">The first value to compare.</param>
595       <param name="right">The second value to compare.</param>
596       <returns>
597         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, <see langword="false" />.</returns>
598     </member>
599     <member name="M:System.Numerics.BigInteger.op_Inequality(System.Numerics.BigInteger,System.Int64)">
600       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value and a 64-bit signed integer are not equal.</summary>
601       <param name="left">The first value to compare.</param>
602       <param name="right">The second value to compare.</param>
603       <returns>
604         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, <see langword="false" />.</returns>
605     </member>
606     <member name="M:System.Numerics.BigInteger.op_Inequality(System.Numerics.BigInteger,System.Numerics.BigInteger)">
607       <summary>Returns a value that indicates whether two <see cref="T:System.Numerics.BigInteger" /> objects have different values.</summary>
608       <param name="left">The first value to compare.</param>
609       <param name="right">The second value to compare.</param>
610       <returns>
611         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, <see langword="false" />.</returns>
612     </member>
613     <member name="M:System.Numerics.BigInteger.op_Inequality(System.Numerics.BigInteger,System.UInt64)">
614       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value and a 64-bit unsigned integer are not equal.</summary>
615       <param name="left">The first value to compare.</param>
616       <param name="right">The second value to compare.</param>
617       <returns>
618         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, <see langword="false" />.</returns>
619     </member>
620     <member name="M:System.Numerics.BigInteger.op_Inequality(System.UInt64,System.Numerics.BigInteger)">
621       <summary>Returns a value that indicates whether a 64-bit unsigned integer and a <see cref="T:System.Numerics.BigInteger" /> value are not equal.</summary>
622       <param name="left">The first value to compare.</param>
623       <param name="right">The second value to compare.</param>
624       <returns>
625         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, <see langword="false" />.</returns>
626     </member>
627     <member name="M:System.Numerics.BigInteger.op_LeftShift(System.Numerics.BigInteger,System.Int32)">
628       <summary>Shifts a <see cref="T:System.Numerics.BigInteger" /> value a specified number of bits to the left.</summary>
629       <param name="value">The value whose bits are to be shifted.</param>
630       <param name="shift">The number of bits to shift <paramref name="value" /> to the left.</param>
631       <returns>A value that has been shifted to the left by the specified number of bits.</returns>
632     </member>
633     <member name="M:System.Numerics.BigInteger.op_LessThan(System.Int64,System.Numerics.BigInteger)">
634       <summary>Returns a value that indicates whether a 64-bit signed integer is less than a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
635       <param name="left">The first value to compare.</param>
636       <param name="right">The second value to compare.</param>
637       <returns>
638         <see langword="true" /> if <paramref name="left" /> is less than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
639     </member>
640     <member name="M:System.Numerics.BigInteger.op_LessThan(System.Numerics.BigInteger,System.Int64)">
641       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is less than a 64-bit signed integer.</summary>
642       <param name="left">The first value to compare.</param>
643       <param name="right">The second value to compare.</param>
644       <returns>
645         <see langword="true" /> if <paramref name="left" /> is less than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
646     </member>
647     <member name="M:System.Numerics.BigInteger.op_LessThan(System.Numerics.BigInteger,System.Numerics.BigInteger)">
648       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is less than another <see cref="T:System.Numerics.BigInteger" /> value.</summary>
649       <param name="left">The first value to compare.</param>
650       <param name="right">The second value to compare.</param>
651       <returns>
652         <see langword="true" /> if <paramref name="left" /> is less than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
653     </member>
654     <member name="M:System.Numerics.BigInteger.op_LessThan(System.Numerics.BigInteger,System.UInt64)">
655       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is less than a 64-bit unsigned integer.</summary>
656       <param name="left">The first value to compare.</param>
657       <param name="right">The second value to compare.</param>
658       <returns>
659         <see langword="true" /> if <paramref name="left" /> is less than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
660     </member>
661     <member name="M:System.Numerics.BigInteger.op_LessThan(System.UInt64,System.Numerics.BigInteger)">
662       <summary>Returns a value that indicates whether a 64-bit unsigned integer is less than a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
663       <param name="left">The first value to compare.</param>
664       <param name="right">The second value to compare.</param>
665       <returns>
666         <see langword="true" /> if <paramref name="left" /> is less than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
667     </member>
668     <member name="M:System.Numerics.BigInteger.op_LessThanOrEqual(System.Int64,System.Numerics.BigInteger)">
669       <summary>Returns a value that indicates whether a 64-bit signed integer is less than or equal to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
670       <param name="left">The first value to compare.</param>
671       <param name="right">The second value to compare.</param>
672       <returns>
673         <see langword="true" /> if <paramref name="left" /> is less than or equal to <paramref name="right" />; otherwise, <see langword="false" />.</returns>
674     </member>
675     <member name="M:System.Numerics.BigInteger.op_LessThanOrEqual(System.Numerics.BigInteger,System.Int64)">
676       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is less than or equal to a 64-bit signed integer.</summary>
677       <param name="left">The first value to compare.</param>
678       <param name="right">The second value to compare.</param>
679       <returns>
680         <see langword="true" /> if <paramref name="left" /> is less than or equal to <paramref name="right" />; otherwise, <see langword="false" />.</returns>
681     </member>
682     <member name="M:System.Numerics.BigInteger.op_LessThanOrEqual(System.Numerics.BigInteger,System.Numerics.BigInteger)">
683       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is less than or equal to another <see cref="T:System.Numerics.BigInteger" /> value.</summary>
684       <param name="left">The first value to compare.</param>
685       <param name="right">The second value to compare.</param>
686       <returns>
687         <see langword="true" /> if <paramref name="left" /> is less than or equal to <paramref name="right" />; otherwise, <see langword="false" />.</returns>
688     </member>
689     <member name="M:System.Numerics.BigInteger.op_LessThanOrEqual(System.Numerics.BigInteger,System.UInt64)">
690       <summary>Returns a value that indicates whether a <see cref="T:System.Numerics.BigInteger" /> value is less than or equal to a 64-bit unsigned integer.</summary>
691       <param name="left">The first value to compare.</param>
692       <param name="right">The second value to compare.</param>
693       <returns>
694         <see langword="true" /> if <paramref name="left" /> is less than or equal to <paramref name="right" />; otherwise, <see langword="false" />.</returns>
695     </member>
696     <member name="M:System.Numerics.BigInteger.op_LessThanOrEqual(System.UInt64,System.Numerics.BigInteger)">
697       <summary>Returns a value that indicates whether a 64-bit unsigned integer is less than or equal to a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
698       <param name="left">The first value to compare.</param>
699       <param name="right">The second value to compare.</param>
700       <returns>
701         <see langword="true" /> if <paramref name="left" /> is less than or equal to <paramref name="right" />; otherwise, <see langword="false" />.</returns>
702     </member>
703     <member name="M:System.Numerics.BigInteger.op_Modulus(System.Numerics.BigInteger,System.Numerics.BigInteger)">
704       <summary>Returns the remainder that results from division with two specified <see cref="T:System.Numerics.BigInteger" /> values.</summary>
705       <param name="dividend">The value to be divided.</param>
706       <param name="divisor">The value to divide by.</param>
707       <returns>The remainder that results from the division.</returns>
708       <exception cref="T:System.DivideByZeroException">
709         <paramref name="divisor" /> is 0 (zero).</exception>
710     </member>
711     <member name="M:System.Numerics.BigInteger.op_Multiply(System.Numerics.BigInteger,System.Numerics.BigInteger)">
712       <summary>Multiplies two specified <see cref="T:System.Numerics.BigInteger" /> values.</summary>
713       <param name="left">The first value to multiply.</param>
714       <param name="right">The second value to multiply.</param>
715       <returns>The product of <paramref name="left" /> and <paramref name="right" />.</returns>
716     </member>
717     <member name="M:System.Numerics.BigInteger.op_OnesComplement(System.Numerics.BigInteger)">
718       <summary>Returns the bitwise one's complement of a <see cref="T:System.Numerics.BigInteger" /> value.</summary>
719       <param name="value">An integer value.</param>
720       <returns>The bitwise one's complement of <paramref name="value" />.</returns>
721     </member>
722     <member name="M:System.Numerics.BigInteger.op_RightShift(System.Numerics.BigInteger,System.Int32)">
723       <summary>Shifts a <see cref="T:System.Numerics.BigInteger" /> value a specified number of bits to the right.</summary>
724       <param name="value">The value whose bits are to be shifted.</param>
725       <param name="shift">The number of bits to shift <paramref name="value" /> to the right.</param>
726       <returns>A value that has been shifted to the right by the specified number of bits.</returns>
727     </member>
728     <member name="M:System.Numerics.BigInteger.op_Subtraction(System.Numerics.BigInteger,System.Numerics.BigInteger)">
729       <summary>Subtracts a <see cref="T:System.Numerics.BigInteger" /> value from another <see cref="T:System.Numerics.BigInteger" /> value.</summary>
730       <param name="left">The value to subtract from (the minuend).</param>
731       <param name="right">The value to subtract (the subtrahend).</param>
732       <returns>The result of subtracting <paramref name="right" /> from <paramref name="left" />.</returns>
733     </member>
734     <member name="M:System.Numerics.BigInteger.op_UnaryNegation(System.Numerics.BigInteger)">
735       <summary>Negates a specified BigInteger value.</summary>
736       <param name="value">The value to negate.</param>
737       <returns>The result of the <paramref name="value" /> parameter multiplied by negative one (-1).</returns>
738     </member>
739     <member name="M:System.Numerics.BigInteger.op_UnaryPlus(System.Numerics.BigInteger)">
740       <summary>Returns the value of the <see cref="T:System.Numerics.BigInteger" /> operand. (The sign of the operand is unchanged.)</summary>
741       <param name="value">An integer value.</param>
742       <returns>The value of the <paramref name="value" /> operand.</returns>
743     </member>
744     <member name="M:System.Numerics.BigInteger.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider)">
745       <param name="value" />
746       <param name="style" />
747       <param name="provider" />
748     </member>
749     <member name="M:System.Numerics.BigInteger.Parse(System.String)">
750       <summary>Converts the string representation of a number to its <see cref="T:System.Numerics.BigInteger" /> equivalent.</summary>
751       <param name="value">A string that contains the number to convert.</param>
752       <returns>A value that is equivalent to the number specified in the <paramref name="value" /> parameter.</returns>
753       <exception cref="T:System.ArgumentNullException">
754         <paramref name="value" /> is <see langword="null" />.</exception>
755       <exception cref="T:System.FormatException">
756         <paramref name="value" /> is not in the correct format.</exception>
757     </member>
758     <member name="M:System.Numerics.BigInteger.Parse(System.String,System.Globalization.NumberStyles)">
759       <summary>Converts the string representation of a number in a specified style to its <see cref="T:System.Numerics.BigInteger" /> equivalent.</summary>
760       <param name="value">A string that contains a number to convert.</param>
761       <param name="style">A bitwise combination of the enumeration values that specify the permitted format of <paramref name="value" />.</param>
762       <returns>A value that is equivalent to the number specified in the <paramref name="value" /> parameter.</returns>
763       <exception cref="T:System.ArgumentException">
764         <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value.
765 -or-
766 <paramref name="style" /> includes the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> or <see cref="F:System.Globalization.NumberStyles.HexNumber" /> flag along with another value.</exception>
767       <exception cref="T:System.ArgumentNullException">
768         <paramref name="value" /> is <see langword="null" />.</exception>
769       <exception cref="T:System.FormatException">
770         <paramref name="value" /> does not comply with the input pattern specified by <see cref="T:System.Globalization.NumberStyles" />.</exception>
771     </member>
772     <member name="M:System.Numerics.BigInteger.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)">
773       <summary>Converts the string representation of a number in a specified style and culture-specific format to its <see cref="T:System.Numerics.BigInteger" /> equivalent.</summary>
774       <param name="value">A string that contains a number to convert.</param>
775       <param name="style">A bitwise combination of the enumeration values that specify the permitted format of <paramref name="value" />.</param>
776       <param name="provider">An object that provides culture-specific formatting information about <paramref name="value" />.</param>
777       <returns>A value that is equivalent to the number specified in the <paramref name="value" /> parameter.</returns>
778       <exception cref="T:System.ArgumentException">
779         <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value.
780 -or-
781 <paramref name="style" /> includes the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> or <see cref="F:System.Globalization.NumberStyles.HexNumber" /> flag along with another value.</exception>
782       <exception cref="T:System.ArgumentNullException">
783         <paramref name="value" /> is <see langword="null" />.</exception>
784       <exception cref="T:System.FormatException">
785         <paramref name="value" /> does not comply with the input pattern specified by <paramref name="style" />.</exception>
786     </member>
787     <member name="M:System.Numerics.BigInteger.Parse(System.String,System.IFormatProvider)">
788       <summary>Converts the string representation of a number in a specified culture-specific format to its <see cref="T:System.Numerics.BigInteger" /> equivalent.</summary>
789       <param name="value">A string that contains a number to convert.</param>
790       <param name="provider">An object that provides culture-specific formatting information about <paramref name="value" />.</param>
791       <returns>A value that is equivalent to the number specified in the <paramref name="value" /> parameter.</returns>
792       <exception cref="T:System.ArgumentNullException">
793         <paramref name="value" /> is <see langword="null" />.</exception>
794       <exception cref="T:System.FormatException">
795         <paramref name="value" /> is not in the correct format.</exception>
796     </member>
797     <member name="M:System.Numerics.BigInteger.Pow(System.Numerics.BigInteger,System.Int32)">
798       <summary>Raises a <see cref="T:System.Numerics.BigInteger" /> value to the power of a specified value.</summary>
799       <param name="value">The number to raise to the <paramref name="exponent" /> power.</param>
800       <param name="exponent">The exponent to raise <paramref name="value" /> by.</param>
801       <returns>The result of raising <paramref name="value" /> to the <paramref name="exponent" /> power.</returns>
802       <exception cref="T:System.ArgumentOutOfRangeException">
803         <paramref name="exponent" /> is negative.</exception>
804     </member>
805     <member name="M:System.Numerics.BigInteger.Remainder(System.Numerics.BigInteger,System.Numerics.BigInteger)">
806       <summary>Performs integer division on two <see cref="T:System.Numerics.BigInteger" /> values and returns the remainder.</summary>
807       <param name="dividend">The value to be divided.</param>
808       <param name="divisor">The value to divide by.</param>
809       <returns>The remainder after dividing <paramref name="dividend" /> by <paramref name="divisor" />.</returns>
810       <exception cref="T:System.DivideByZeroException">
811         <paramref name="divisor" /> is 0 (zero).</exception>
812     </member>
813     <member name="P:System.Numerics.BigInteger.Sign">
814       <summary>Gets a number that indicates the sign (negative, positive, or zero) of the current <see cref="T:System.Numerics.BigInteger" /> object.</summary>
815       <returns>A number that indicates the sign of the <see cref="T:System.Numerics.BigInteger" /> object, as shown in the following table.
816   Number  
817   
818   Description  
819   
820   -1  
821   
822   The value of this object is negative.  
823   
824   0  
825   
826   The value of this object is 0 (zero).  
827   
828   1  
829   
830   The value of this object is positive.</returns>
831     </member>
832     <member name="M:System.Numerics.BigInteger.Subtract(System.Numerics.BigInteger,System.Numerics.BigInteger)">
833       <summary>Subtracts one <see cref="T:System.Numerics.BigInteger" /> value from another and returns the result.</summary>
834       <param name="left">The value to subtract from (the minuend).</param>
835       <param name="right">The value to subtract (the subtrahend).</param>
836       <returns>The result of subtracting <paramref name="right" /> from <paramref name="left" />.</returns>
837     </member>
838     <member name="M:System.Numerics.BigInteger.ToByteArray">
839       <summary>Converts a <see cref="T:System.Numerics.BigInteger" /> value to a byte array.</summary>
840       <returns>The value of the current <see cref="T:System.Numerics.BigInteger" /> object converted to an array of bytes.</returns>
841     </member>
842     <member name="M:System.Numerics.BigInteger.ToByteArray(System.Boolean,System.Boolean)">
843       <summary>Returns the value of this <see cref="T:System.Numerics.BigInteger" /> as a byte array using the fewest number of bytes possible. If the value is zero, returns an array of one byte whose element is 0x00.</summary>
844       <param name="isUnsigned">
845         <see langword="true" /> to use unsigned encoding; otherwise, <see langword="false" />.</param>
846       <param name="isBigEndian">
847         <see langword="true" /> to write the bytes in a big-endian byte order; otherwise, <see langword="false" />.</param>
848       <returns>The value of the current <see cref="T:System.Numerics.BigInteger" /> object converted to an array of bytes.</returns>
849       <exception cref="T:System.OverflowException">If <paramref name="isUnsigned" /> is <see langword="true" /> and <see cref="P:System.Numerics.BigInteger.Sign" /> is negative.</exception>
850     </member>
851     <member name="M:System.Numerics.BigInteger.ToString">
852       <summary>Converts the numeric value of the current <see cref="T:System.Numerics.BigInteger" /> object to its equivalent string representation.</summary>
853       <returns>The string representation of the current <see cref="T:System.Numerics.BigInteger" /> value.</returns>
854     </member>
855     <member name="M:System.Numerics.BigInteger.ToString(System.IFormatProvider)">
856       <summary>Converts the numeric value of the current <see cref="T:System.Numerics.BigInteger" /> object to its equivalent string representation by using the specified culture-specific formatting information.</summary>
857       <param name="provider">An object that supplies culture-specific formatting information.</param>
858       <returns>The string representation of the current <see cref="T:System.Numerics.BigInteger" /> value in the format specified by the <paramref name="provider" /> parameter.</returns>
859     </member>
860     <member name="M:System.Numerics.BigInteger.ToString(System.String)">
861       <summary>Converts the numeric value of the current <see cref="T:System.Numerics.BigInteger" /> object to its equivalent string representation by using the specified format.</summary>
862       <param name="format">A standard or custom numeric format string.</param>
863       <returns>The string representation of the current <see cref="T:System.Numerics.BigInteger" /> value in the format specified by the <paramref name="format" /> parameter.</returns>
864       <exception cref="T:System.FormatException">
865         <paramref name="format" /> is not a valid format string.</exception>
866     </member>
867     <member name="M:System.Numerics.BigInteger.ToString(System.String,System.IFormatProvider)">
868       <summary>Converts the numeric value of the current <see cref="T:System.Numerics.BigInteger" /> object to its equivalent string representation by using the specified format and culture-specific format information.</summary>
869       <param name="format">A standard or custom numeric format string.</param>
870       <param name="provider">An object that supplies culture-specific formatting information.</param>
871       <returns>The string representation of the current <see cref="T:System.Numerics.BigInteger" /> value as specified by the <paramref name="format" /> and <paramref name="provider" /> parameters.</returns>
872       <exception cref="T:System.FormatException">
873         <paramref name="format" /> is not a valid format string.</exception>
874     </member>
875     <member name="M:System.Numerics.BigInteger.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider)">
876       <param name="destination" />
877       <param name="charsWritten" />
878       <param name="format" />
879       <param name="provider" />
880     </member>
881     <member name="M:System.Numerics.BigInteger.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Numerics.BigInteger@)">
882       <param name="value" />
883       <param name="style" />
884       <param name="provider" />
885       <param name="result" />
886     </member>
887     <member name="M:System.Numerics.BigInteger.TryParse(System.ReadOnlySpan{System.Char},System.Numerics.BigInteger@)">
888       <param name="value" />
889       <param name="result" />
890     </member>
891     <member name="M:System.Numerics.BigInteger.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Numerics.BigInteger@)">
892       <summary>Tries to convert the string representation of a number in a specified style and culture-specific format to its <see cref="T:System.Numerics.BigInteger" /> equivalent, and returns a value that indicates whether the conversion succeeded.</summary>
893       <param name="value">The string representation of a number. The string is interpreted using the style specified by <paramref name="style" />.</param>
894       <param name="style">A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="value" />. A typical value to specify is <see cref="F:System.Globalization.NumberStyles.Integer" />.</param>
895       <param name="provider">An object that supplies culture-specific formatting information about <paramref name="value" />.</param>
896       <param name="result">When this method returns, contains the <see cref="T:System.Numerics.BigInteger" /> equivalent to the number that is contained in <paramref name="value" />, or <see cref="P:System.Numerics.BigInteger.Zero" /> if the conversion failed. The conversion fails if the <paramref name="value" /> parameter is <see langword="null" /> or is not in a format that is compliant with <paramref name="style" />. This parameter is passed uninitialized.</param>
897       <returns>
898         <see langword="true" /> if the <paramref name="value" /> parameter was converted successfully; otherwise, <see langword="false" />.</returns>
899       <exception cref="T:System.ArgumentException">
900         <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value.
901 -or-
902 <paramref name="style" /> includes the <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> or <see cref="F:System.Globalization.NumberStyles.HexNumber" /> flag along with another value.</exception>
903     </member>
904     <member name="M:System.Numerics.BigInteger.TryParse(System.String,System.Numerics.BigInteger@)">
905       <summary>Tries to convert the string representation of a number to its <see cref="T:System.Numerics.BigInteger" /> equivalent, and returns a value that indicates whether the conversion succeeded.</summary>
906       <param name="value">The string representation of a number.</param>
907       <param name="result">When this method returns, contains the <see cref="T:System.Numerics.BigInteger" /> equivalent to the number that is contained in <paramref name="value" />, or zero (0) if the conversion fails. The conversion fails if the <paramref name="value" /> parameter is <see langword="null" /> or is not of the correct format. This parameter is passed uninitialized.</param>
908       <returns>
909         <see langword="true" /> if <paramref name="value" /> was converted successfully; otherwise, <see langword="false" />.</returns>
910       <exception cref="T:System.ArgumentNullException">
911         <paramref name="value" /> is <see langword="null" />.</exception>
912     </member>
913     <member name="M:System.Numerics.BigInteger.TryWriteBytes(System.Span{System.Byte},System.Int32@,System.Boolean,System.Boolean)">
914       <summary>Copies the value of this <see cref="T:System.Numerics.BigInteger" /> as little-endian twos-complement bytes, using the fewest number of bytes possible. If the value is zero, outputs one byte whose element is 0x00.</summary>
915       <param name="destination">The destination span to which the resulting bytes should be written.</param>
916       <param name="bytesWritten">The number of bytes written to <paramref name="destination" />.</param>
917       <param name="isUnsigned">
918         <see langword="true" /> to use unsigned encoding; otherwise, <see langword="false" />.</param>
919       <param name="isBigEndian">
920         <see langword="true" /> to write the bytes in a big-endian byte order; otherwise, <see langword="false" />.</param>
921       <returns>
922         <see langword="true" /> if the bytes fit in <paramref name="destination" />; <see langword="false" /> if not all bytes could be written due to lack of space.</returns>
923       <exception cref="T:System.OverflowException">
924         <paramref name="isUnsigned" /> is <see langword="true" /> and <see cref="P:System.Numerics.BigInteger.Sign" /> is negative.</exception>
925     </member>
926     <member name="P:System.Numerics.BigInteger.Zero">
927       <summary>Gets a value that represents the number 0 (zero).</summary>
928       <returns>An integer whose value is 0 (zero).</returns>
929     </member>
930     <member name="T:System.Numerics.Complex">
931       <summary>Represents a complex number.</summary>
932     </member>
933     <member name="M:System.Numerics.Complex.#ctor(System.Double,System.Double)">
934       <summary>Initializes a new instance of the <see cref="T:System.Numerics.Complex" /> structure using the specified real and imaginary values.</summary>
935       <param name="real">The real part of the complex number.</param>
936       <param name="imaginary">The imaginary part of the complex number.</param>
937     </member>
938     <member name="M:System.Numerics.Complex.Abs(System.Numerics.Complex)">
939       <summary>Gets the absolute value (or magnitude) of a complex number.</summary>
940       <param name="value">A complex number.</param>
941       <returns>The absolute value of <paramref name="value" />.</returns>
942     </member>
943     <member name="M:System.Numerics.Complex.Acos(System.Numerics.Complex)">
944       <summary>Returns the angle that is the arc cosine of the specified complex number.</summary>
945       <param name="value">A complex number that represents a cosine.</param>
946       <returns>The angle, measured in radians, which is the arc cosine of <paramref name="value" />.</returns>
947     </member>
948     <member name="M:System.Numerics.Complex.Add(System.Double,System.Numerics.Complex)">
949       <summary>Adds a double-precision real number to a complex number and returns the result.</summary>
950       <param name="left">The double-precision real value to add.</param>
951       <param name="right">The complex value to add.</param>
952       <returns>The sum of <paramref name="left" /> and <paramref name="right" />.</returns>
953     </member>
954     <member name="M:System.Numerics.Complex.Add(System.Numerics.Complex,System.Double)">
955       <summary>Adds a complex number to a double-precision real number and returns the result.</summary>
956       <param name="left">The complex value to add.</param>
957       <param name="right">The double-precision real value to add.</param>
958       <returns>The sum of <paramref name="left" /> and <paramref name="right" />.</returns>
959     </member>
960     <member name="M:System.Numerics.Complex.Add(System.Numerics.Complex,System.Numerics.Complex)">
961       <summary>Adds two complex numbers and returns the result.</summary>
962       <param name="left">The first complex number to add.</param>
963       <param name="right">The second complex number to add.</param>
964       <returns>The sum of <paramref name="left" /> and <paramref name="right" />.</returns>
965     </member>
966     <member name="M:System.Numerics.Complex.Asin(System.Numerics.Complex)">
967       <summary>Returns the angle that is the arc sine of the specified complex number.</summary>
968       <param name="value">A complex number.</param>
969       <returns>The angle which is the arc sine of <paramref name="value" />.</returns>
970     </member>
971     <member name="M:System.Numerics.Complex.Atan(System.Numerics.Complex)">
972       <summary>Returns the angle that is the arc tangent of the specified complex number.</summary>
973       <param name="value">A complex number.</param>
974       <returns>The angle that is the arc tangent of <paramref name="value" />.</returns>
975     </member>
976     <member name="M:System.Numerics.Complex.Conjugate(System.Numerics.Complex)">
977       <summary>Computes the conjugate of a complex number and returns the result.</summary>
978       <param name="value">A complex number.</param>
979       <returns>The conjugate of <paramref name="value" />.</returns>
980     </member>
981     <member name="M:System.Numerics.Complex.Cos(System.Numerics.Complex)">
982       <summary>Returns the cosine of the specified complex number.</summary>
983       <param name="value">A complex number.</param>
984       <returns>The cosine of <paramref name="value" />.</returns>
985     </member>
986     <member name="M:System.Numerics.Complex.Cosh(System.Numerics.Complex)">
987       <summary>Returns the hyperbolic cosine of the specified complex number.</summary>
988       <param name="value">A complex number.</param>
989       <returns>The hyperbolic cosine of <paramref name="value" />.</returns>
990     </member>
991     <member name="M:System.Numerics.Complex.Divide(System.Double,System.Numerics.Complex)">
992       <summary>Divides one double-precision real number by a complex number and returns the result.</summary>
993       <param name="dividend">The double-precision real number to be divided.</param>
994       <param name="divisor">The complex number to divide by.</param>
995       <returns>The quotient of the division.</returns>
996     </member>
997     <member name="M:System.Numerics.Complex.Divide(System.Numerics.Complex,System.Double)">
998       <summary>Divides one complex number by a double-precision real number and returns the result.</summary>
999       <param name="dividend">The complex number to be divided.</param>
1000       <param name="divisor">The double-precision real number to divide by.</param>
1001       <returns>The quotient of the division.</returns>
1002     </member>
1003     <member name="M:System.Numerics.Complex.Divide(System.Numerics.Complex,System.Numerics.Complex)">
1004       <summary>Divides one complex number by another and returns the result.</summary>
1005       <param name="dividend">The complex number to be divided.</param>
1006       <param name="divisor">The complex number to divide by.</param>
1007       <returns>The quotient of the division.</returns>
1008     </member>
1009     <member name="M:System.Numerics.Complex.Equals(System.Numerics.Complex)">
1010       <summary>Returns a value that indicates whether the current instance and a specified complex number have the same value.</summary>
1011       <param name="value">The complex number to compare.</param>
1012       <returns>
1013         <see langword="true" /> if this complex number and <paramref name="value" /> have the same value; otherwise, <see langword="false" />.</returns>
1014     </member>
1015     <member name="M:System.Numerics.Complex.Equals(System.Object)">
1016       <summary>Returns a value that indicates whether the current instance and a specified object have the same value.</summary>
1017       <param name="obj">The object to compare.</param>
1018       <returns>
1019         <see langword="true" /> if the <paramref name="obj" /> parameter is a <see cref="T:System.Numerics.Complex" /> object or a type capable of implicit conversion to a <see cref="T:System.Numerics.Complex" /> object, and its value is equal to the current <see cref="T:System.Numerics.Complex" /> object; otherwise, <see langword="false" />.</returns>
1020     </member>
1021     <member name="M:System.Numerics.Complex.Exp(System.Numerics.Complex)">
1022       <summary>Returns <see langword="e" /> raised to the power specified by a complex number.</summary>
1023       <param name="value">A complex number that specifies a power.</param>
1024       <returns>The number <see langword="e" /> raised to the power <paramref name="value" />.</returns>
1025     </member>
1026     <member name="M:System.Numerics.Complex.FromPolarCoordinates(System.Double,System.Double)">
1027       <summary>Creates a complex number from a point's polar coordinates.</summary>
1028       <param name="magnitude">The magnitude, which is the distance from the origin (the intersection of the x-axis and the y-axis) to the number.</param>
1029       <param name="phase">The phase, which is the angle from the line to the horizontal axis, measured in radians.</param>
1030       <returns>A complex number.</returns>
1031     </member>
1032     <member name="M:System.Numerics.Complex.GetHashCode">
1033       <summary>Returns the hash code for the current <see cref="T:System.Numerics.Complex" /> object.</summary>
1034       <returns>A 32-bit signed integer hash code.</returns>
1035     </member>
1036     <member name="P:System.Numerics.Complex.Imaginary">
1037       <summary>Gets the imaginary component of the current <see cref="T:System.Numerics.Complex" /> object.</summary>
1038       <returns>The imaginary component of a complex number.</returns>
1039     </member>
1040     <member name="F:System.Numerics.Complex.ImaginaryOne">
1041       <summary>Returns a new <see cref="T:System.Numerics.Complex" /> instance with a real number equal to zero and an imaginary number equal to one.</summary>
1042     </member>
1043     <member name="F:System.Numerics.Complex.Infinity">
1044       <summary>Represents infinity as a complex number.</summary>
1045     </member>
1046     <member name="M:System.Numerics.Complex.IsFinite(System.Numerics.Complex)">
1047       <summary>Determines whether the specified complex number is finite.</summary>
1048       <param name="value">A complex number.</param>
1049       <returns>
1050         <see langword="true" /> if both, the real and imaginary parts are finite (zero, subnormal or normal); otherwise, <see langword="false" />.</returns>
1051     </member>
1052     <member name="M:System.Numerics.Complex.IsInfinity(System.Numerics.Complex)">
1053       <summary>Returns a value indicating whether the specified complex number evaluates to infinity.</summary>
1054       <param name="value">A complex number.</param>
1055       <returns>
1056         <see langword="true" /> if either, the real or imaginary part are <see cref="F:System.Double.PositiveInfinity" /> or <see cref="F:System.Double.NegativeInfinity" />; otherwise, <see langword="false" />.</returns>
1057     </member>
1058     <member name="M:System.Numerics.Complex.IsNaN(System.Numerics.Complex)">
1059       <summary>Returns a value that indicates whether the specified complex instance is not a number (NaN).</summary>
1060       <param name="value">A complex number.</param>
1061       <returns>
1062         <see langword="true" /> if the specified value is not finite nor infinite; otherwise, <see langword="false" />.</returns>
1063     </member>
1064     <member name="M:System.Numerics.Complex.Log(System.Numerics.Complex)">
1065       <summary>Returns the natural (base <see langword="e" />) logarithm of a specified complex number.</summary>
1066       <param name="value">A complex number.</param>
1067       <returns>The natural (base <see langword="e" />) logarithm of <paramref name="value" />.</returns>
1068     </member>
1069     <member name="M:System.Numerics.Complex.Log(System.Numerics.Complex,System.Double)">
1070       <summary>Returns the logarithm of a specified complex number in a specified base.</summary>
1071       <param name="value">A complex number.</param>
1072       <param name="baseValue">The base of the logarithm.</param>
1073       <returns>The logarithm of <paramref name="value" /> in base <paramref name="baseValue" />.</returns>
1074     </member>
1075     <member name="M:System.Numerics.Complex.Log10(System.Numerics.Complex)">
1076       <summary>Returns the base-10 logarithm of a specified complex number.</summary>
1077       <param name="value">A complex number.</param>
1078       <returns>The base-10 logarithm of <paramref name="value" />.</returns>
1079     </member>
1080     <member name="P:System.Numerics.Complex.Magnitude">
1081       <summary>Gets the magnitude (or absolute value) of a complex number.</summary>
1082       <returns>The magnitude of the current instance.</returns>
1083     </member>
1084     <member name="M:System.Numerics.Complex.Multiply(System.Double,System.Numerics.Complex)">
1085       <summary>Returns the product of a double-precision real number and a complex number.</summary>
1086       <param name="left">The double-precision real number to multiply.</param>
1087       <param name="right">The complex number to multiply.</param>
1088       <returns>The product of the <paramref name="left" /> and <paramref name="right" /> parameters.</returns>
1089     </member>
1090     <member name="M:System.Numerics.Complex.Multiply(System.Numerics.Complex,System.Double)">
1091       <summary>Returns the product of a complex number and a double-precision real number.</summary>
1092       <param name="left">The complex number to multiply.</param>
1093       <param name="right">The double-precision real number to multiply.</param>
1094       <returns>The product of the <paramref name="left" /> and <paramref name="right" /> parameters.</returns>
1095     </member>
1096     <member name="M:System.Numerics.Complex.Multiply(System.Numerics.Complex,System.Numerics.Complex)">
1097       <summary>Returns the product of two complex numbers.</summary>
1098       <param name="left">The first complex number to multiply.</param>
1099       <param name="right">The second complex number to multiply.</param>
1100       <returns>The product of the <paramref name="left" /> and <paramref name="right" /> parameters.</returns>
1101     </member>
1102     <member name="F:System.Numerics.Complex.NaN">
1103       <summary>Represents a complex instance that is not a number (NaN).</summary>
1104     </member>
1105     <member name="M:System.Numerics.Complex.Negate(System.Numerics.Complex)">
1106       <summary>Returns the additive inverse of a specified complex number.</summary>
1107       <param name="value">A complex number.</param>
1108       <returns>The result of the <see cref="P:System.Numerics.Complex.Real" /> and <see cref="P:System.Numerics.Complex.Imaginary" /> components of the <paramref name="value" /> parameter multiplied by -1.</returns>
1109     </member>
1110     <member name="F:System.Numerics.Complex.One">
1111       <summary>Returns a new <see cref="T:System.Numerics.Complex" /> instance with a real number equal to one and an imaginary number equal to zero.</summary>
1112     </member>
1113     <member name="M:System.Numerics.Complex.op_Addition(System.Double,System.Numerics.Complex)">
1114       <summary>Adds a double-precision real number to a complex number.</summary>
1115       <param name="left">The double-precision real value to add.</param>
1116       <param name="right">The complex value to add.</param>
1117       <returns>The sum of <paramref name="left" /> and <paramref name="right" /> as a complex number.</returns>
1118     </member>
1119     <member name="M:System.Numerics.Complex.op_Addition(System.Numerics.Complex,System.Double)">
1120       <summary>Adds a complex number to a double-precision real number.</summary>
1121       <param name="left">The complex value to add.</param>
1122       <param name="right">The double-precision real value to add.</param>
1123       <returns>The sum of <paramref name="left" /> and <paramref name="right" /> as a complex number.</returns>
1124     </member>
1125     <member name="M:System.Numerics.Complex.op_Addition(System.Numerics.Complex,System.Numerics.Complex)">
1126       <summary>Adds two complex numbers.</summary>
1127       <param name="left">The first complex value to add.</param>
1128       <param name="right">The second complex value to add.</param>
1129       <returns>The sum of <paramref name="left" /> and <paramref name="right" />.</returns>
1130     </member>
1131     <member name="M:System.Numerics.Complex.op_Division(System.Double,System.Numerics.Complex)">
1132       <summary>Divides a specified double-precision real number by a specified complex number.</summary>
1133       <param name="left">The double-precision real value to be divided.</param>
1134       <param name="right">The complex value to divide by.</param>
1135       <returns>The result of dividing <paramref name="left" /> by <paramref name="right" />, as a complex number.</returns>
1136     </member>
1137     <member name="M:System.Numerics.Complex.op_Division(System.Numerics.Complex,System.Double)">
1138       <summary>Divides a specified complex number by a specified double-precision real number.</summary>
1139       <param name="left">The complex value to be divided.</param>
1140       <param name="right">The double-precision real value to divide by.</param>
1141       <returns>The result of dividing <paramref name="left" /> by <paramref name="right" />, as a complex number.</returns>
1142     </member>
1143     <member name="M:System.Numerics.Complex.op_Division(System.Numerics.Complex,System.Numerics.Complex)">
1144       <summary>Divides a specified complex number by another specified complex number.</summary>
1145       <param name="left">The complex value to be divided.</param>
1146       <param name="right">The complex value to divide by.</param>
1147       <returns>The result of dividing <paramref name="left" /> by <paramref name="right" />.</returns>
1148     </member>
1149     <member name="M:System.Numerics.Complex.op_Equality(System.Numerics.Complex,System.Numerics.Complex)">
1150       <summary>Returns a value that indicates whether two complex numbers are equal.</summary>
1151       <param name="left">The first complex number to compare.</param>
1152       <param name="right">The second complex number to compare.</param>
1153       <returns>
1154         <see langword="true" /> if the <paramref name="left" /> and <paramref name="right" /> parameters have the same value; otherwise, <see langword="false" />.</returns>
1155     </member>
1156     <member name="M:System.Numerics.Complex.op_Explicit(System.Decimal)~System.Numerics.Complex">
1157       <summary>Defines an explicit conversion of a <see cref="T:System.Decimal" /> value to a complex number.</summary>
1158       <param name="value">The value to convert to a complex number.</param>
1159       <returns>A complex number that has a real component equal to <paramref name="value" /> and an imaginary component equal to zero.</returns>
1160     </member>
1161     <member name="M:System.Numerics.Complex.op_Explicit(System.Numerics.BigInteger)~System.Numerics.Complex">
1162       <summary>Defines an explicit conversion of a <see cref="T:System.Numerics.BigInteger" /> value to a complex number.</summary>
1163       <param name="value">The value to convert to a complex number.</param>
1164       <returns>A complex number that has a real component equal to <paramref name="value" /> and an imaginary component equal to zero.</returns>
1165     </member>
1166     <member name="M:System.Numerics.Complex.op_Implicit(System.Byte)~System.Numerics.Complex">
1167       <summary>Defines an implicit conversion of an unsigned byte to a complex number.</summary>
1168       <param name="value">The value to convert to a complex number.</param>
1169       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1170     </member>
1171     <member name="M:System.Numerics.Complex.op_Implicit(System.Double)~System.Numerics.Complex">
1172       <summary>Defines an implicit conversion of a double-precision floating-point number to a complex number.</summary>
1173       <param name="value">The value to convert to a complex number.</param>
1174       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1175     </member>
1176     <member name="M:System.Numerics.Complex.op_Implicit(System.Int16)~System.Numerics.Complex">
1177       <summary>Defines an implicit conversion of a 16-bit signed integer to a complex number.</summary>
1178       <param name="value">The value to convert to a complex number.</param>
1179       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1180     </member>
1181     <member name="M:System.Numerics.Complex.op_Implicit(System.Int32)~System.Numerics.Complex">
1182       <summary>Defines an implicit conversion of a 32-bit signed integer to a complex number.</summary>
1183       <param name="value">The value to convert to a complex number.</param>
1184       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1185     </member>
1186     <member name="M:System.Numerics.Complex.op_Implicit(System.Int64)~System.Numerics.Complex">
1187       <summary>Defines an implicit conversion of a 64-bit signed integer to a complex number.</summary>
1188       <param name="value">The value to convert to a complex number.</param>
1189       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1190     </member>
1191     <member name="M:System.Numerics.Complex.op_Implicit(System.SByte)~System.Numerics.Complex">
1192       <summary>Defines an implicit conversion of a signed byte to a complex number.
1193 This API is not CLS-compliant.</summary>
1194       <param name="value">The value to convert to a complex number.</param>
1195       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1196     </member>
1197     <member name="M:System.Numerics.Complex.op_Implicit(System.Single)~System.Numerics.Complex">
1198       <summary>Defines an implicit conversion of a single-precision floating-point number to a complex number.</summary>
1199       <param name="value">The value to convert to a complex number.</param>
1200       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1201     </member>
1202     <member name="M:System.Numerics.Complex.op_Implicit(System.UInt16)~System.Numerics.Complex">
1203       <summary>Defines an implicit conversion of a 16-bit unsigned integer to a complex number.
1204 This API is not CLS-compliant.</summary>
1205       <param name="value">The value to convert to a complex number.</param>
1206       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1207     </member>
1208     <member name="M:System.Numerics.Complex.op_Implicit(System.UInt32)~System.Numerics.Complex">
1209       <summary>Defines an implicit conversion of a 32-bit unsigned integer to a complex number.
1210 This API is not CLS-compliant.</summary>
1211       <param name="value">The value to convert to a complex number.</param>
1212       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1213     </member>
1214     <member name="M:System.Numerics.Complex.op_Implicit(System.UInt64)~System.Numerics.Complex">
1215       <summary>Defines an implicit conversion of a 64-bit unsigned integer to a complex number.
1216 This API is not CLS-compliant.</summary>
1217       <param name="value">The value to convert to a complex number.</param>
1218       <returns>An object that contains the value of the <paramref name="value" /> parameter as its real part and zero as its imaginary part.</returns>
1219     </member>
1220     <member name="M:System.Numerics.Complex.op_Inequality(System.Numerics.Complex,System.Numerics.Complex)">
1221       <summary>Returns a value that indicates whether two complex numbers are not equal.</summary>
1222       <param name="left">The first value to compare.</param>
1223       <param name="right">The second value to compare.</param>
1224       <returns>
1225         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, <see langword="false" />.</returns>
1226     </member>
1227     <member name="M:System.Numerics.Complex.op_Multiply(System.Double,System.Numerics.Complex)">
1228       <summary>Multiplies a specified double-precision real number by a specified complex number.</summary>
1229       <param name="left">The double-precision real value to multiply.</param>
1230       <param name="right">The complex value to multiply.</param>
1231       <returns>The product of <paramref name="left" /> and <paramref name="right" />, as a complex number.</returns>
1232     </member>
1233     <member name="M:System.Numerics.Complex.op_Multiply(System.Numerics.Complex,System.Double)">
1234       <summary>Multiplies the specified complex number by a specified double-precision real number.</summary>
1235       <param name="left">The complex value to multiply.</param>
1236       <param name="right">The double-precision real value to multiply.</param>
1237       <returns>The product of <paramref name="left" /> and <paramref name="right" />, as a complex number.</returns>
1238     </member>
1239     <member name="M:System.Numerics.Complex.op_Multiply(System.Numerics.Complex,System.Numerics.Complex)">
1240       <summary>Multiplies two specified complex numbers.</summary>
1241       <param name="left">The first complex value to multiply.</param>
1242       <param name="right">The second complex value to multiply.</param>
1243       <returns>The product of <paramref name="left" /> and <paramref name="right" />.</returns>
1244     </member>
1245     <member name="M:System.Numerics.Complex.op_Subtraction(System.Double,System.Numerics.Complex)">
1246       <summary>Subtracts a complex number from a double-precision real number.</summary>
1247       <param name="left">The double-precision real value to subtract from (the minuend).</param>
1248       <param name="right">The complex value to subtract (the subtrahend).</param>
1249       <returns>The result of subtracting <paramref name="right" /> from <paramref name="left" />, as a complex number.</returns>
1250     </member>
1251     <member name="M:System.Numerics.Complex.op_Subtraction(System.Numerics.Complex,System.Double)">
1252       <summary>Subtracts a double-precision real number from a complex number.</summary>
1253       <param name="left">The complex value to subtract from (the minuend).</param>
1254       <param name="right">The double-precision real value to subtract (the subtrahend).</param>
1255       <returns>The result of subtracting <paramref name="right" /> from <paramref name="left" />, as a complex number.</returns>
1256     </member>
1257     <member name="M:System.Numerics.Complex.op_Subtraction(System.Numerics.Complex,System.Numerics.Complex)">
1258       <summary>Subtracts a complex number from another complex number.</summary>
1259       <param name="left">The value to subtract from (the minuend).</param>
1260       <param name="right">The value to subtract (the subtrahend).</param>
1261       <returns>The result of subtracting <paramref name="right" /> from <paramref name="left" />.</returns>
1262     </member>
1263     <member name="M:System.Numerics.Complex.op_UnaryNegation(System.Numerics.Complex)">
1264       <summary>Returns the additive inverse of a specified complex number.</summary>
1265       <param name="value">The value to negate.</param>
1266       <returns>The result of the <see cref="P:System.Numerics.Complex.Real" /> and <see cref="P:System.Numerics.Complex.Imaginary" /> components of the <paramref name="value" /> parameter multiplied by -1.</returns>
1267     </member>
1268     <member name="P:System.Numerics.Complex.Phase">
1269       <summary>Gets the phase of a complex number.</summary>
1270       <returns>The phase of a complex number, in radians.</returns>
1271     </member>
1272     <member name="M:System.Numerics.Complex.Pow(System.Numerics.Complex,System.Double)">
1273       <summary>Returns a specified complex number raised to a power specified by a double-precision floating-point number.</summary>
1274       <param name="value">A complex number to be raised to a power.</param>
1275       <param name="power">A double-precision floating-point number that specifies a power.</param>
1276       <returns>The complex number <paramref name="value" /> raised to the power <paramref name="power" />.</returns>
1277     </member>
1278     <member name="M:System.Numerics.Complex.Pow(System.Numerics.Complex,System.Numerics.Complex)">
1279       <summary>Returns a specified complex number raised to a power specified by a complex number.</summary>
1280       <param name="value">A complex number to be raised to a power.</param>
1281       <param name="power">A complex number that specifies a power.</param>
1282       <returns>The complex number <paramref name="value" /> raised to the power <paramref name="power" />.</returns>
1283     </member>
1284     <member name="P:System.Numerics.Complex.Real">
1285       <summary>Gets the real component of the current <see cref="T:System.Numerics.Complex" /> object.</summary>
1286       <returns>The real component of a complex number.</returns>
1287     </member>
1288     <member name="M:System.Numerics.Complex.Reciprocal(System.Numerics.Complex)">
1289       <summary>Returns the multiplicative inverse of a complex number.</summary>
1290       <param name="value">A complex number.</param>
1291       <returns>The reciprocal of <paramref name="value" />.</returns>
1292     </member>
1293     <member name="M:System.Numerics.Complex.Sin(System.Numerics.Complex)">
1294       <summary>Returns the sine of the specified complex number.</summary>
1295       <param name="value">A complex number.</param>
1296       <returns>The sine of <paramref name="value" />.</returns>
1297     </member>
1298     <member name="M:System.Numerics.Complex.Sinh(System.Numerics.Complex)">
1299       <summary>Returns the hyperbolic sine of the specified complex number.</summary>
1300       <param name="value">A complex number.</param>
1301       <returns>The hyperbolic sine of <paramref name="value" />.</returns>
1302     </member>
1303     <member name="M:System.Numerics.Complex.Sqrt(System.Numerics.Complex)">
1304       <summary>Returns the square root of a specified complex number.</summary>
1305       <param name="value">A complex number.</param>
1306       <returns>The square root of <paramref name="value" />.</returns>
1307     </member>
1308     <member name="M:System.Numerics.Complex.Subtract(System.Double,System.Numerics.Complex)">
1309       <summary>Subtracts one complex number from a double-precision real number and returns the result.</summary>
1310       <param name="left">The double-precision real value to subtract from (the minuend).</param>
1311       <param name="right">The complex value to subtract (the subtrahend).</param>
1312       <returns>The result of subtracting <paramref name="right" /> from <paramref name="left" />, as a complex number.</returns>
1313     </member>
1314     <member name="M:System.Numerics.Complex.Subtract(System.Numerics.Complex,System.Double)">
1315       <summary>Subtracts one double-precision real number from a complex number and returns the result.</summary>
1316       <param name="left">The complex value to subtract from (the minuend).</param>
1317       <param name="right">The double-precision real value to subtract (the subtrahend).</param>
1318       <returns>The result of subtracting <paramref name="right" /> from <paramref name="left" />, as a complex number.</returns>
1319     </member>
1320     <member name="M:System.Numerics.Complex.Subtract(System.Numerics.Complex,System.Numerics.Complex)">
1321       <summary>Subtracts one complex number from another and returns the result.</summary>
1322       <param name="left">The value to subtract from (the minuend).</param>
1323       <param name="right">The value to subtract (the subtrahend).</param>
1324       <returns>The result of subtracting <paramref name="right" /> from <paramref name="left" />.</returns>
1325     </member>
1326     <member name="M:System.Numerics.Complex.Tan(System.Numerics.Complex)">
1327       <summary>Returns the tangent of the specified complex number.</summary>
1328       <param name="value">A complex number.</param>
1329       <returns>The tangent of <paramref name="value" />.</returns>
1330     </member>
1331     <member name="M:System.Numerics.Complex.Tanh(System.Numerics.Complex)">
1332       <summary>Returns the hyperbolic tangent of the specified complex number.</summary>
1333       <param name="value">A complex number.</param>
1334       <returns>The hyperbolic tangent of <paramref name="value" />.</returns>
1335     </member>
1336     <member name="M:System.Numerics.Complex.ToString">
1337       <summary>Converts the value of the current complex number to its equivalent string representation in Cartesian form.</summary>
1338       <returns>The string representation of the current instance in Cartesian form.</returns>
1339     </member>
1340     <member name="M:System.Numerics.Complex.ToString(System.IFormatProvider)">
1341       <summary>Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified culture-specific formatting information.</summary>
1342       <param name="provider">An object that supplies culture-specific formatting information.</param>
1343       <returns>The string representation of the current instance in Cartesian form, as specified by <paramref name="provider" />.</returns>
1344     </member>
1345     <member name="M:System.Numerics.Complex.ToString(System.String)">
1346       <summary>Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified format for its real and imaginary parts.</summary>
1347       <param name="format">A standard or custom numeric format string.</param>
1348       <returns>The string representation of the current instance in Cartesian form.</returns>
1349       <exception cref="T:System.FormatException">
1350         <paramref name="format" /> is not a valid format string.</exception>
1351     </member>
1352     <member name="M:System.Numerics.Complex.ToString(System.String,System.IFormatProvider)">
1353       <summary>Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified format and culture-specific format information for its real and imaginary parts.</summary>
1354       <param name="format">A standard or custom numeric format string.</param>
1355       <param name="provider">An object that supplies culture-specific formatting information.</param>
1356       <returns>The string representation of the current instance in Cartesian form, as specified by <paramref name="format" /> and <paramref name="provider" />.</returns>
1357       <exception cref="T:System.FormatException">
1358         <paramref name="format" /> is not a valid format string.</exception>
1359     </member>
1360     <member name="F:System.Numerics.Complex.Zero">
1361       <summary>Returns a new <see cref="T:System.Numerics.Complex" /> instance with a real number equal to zero and an imaginary number equal to zero.</summary>
1362     </member>
1363   </members>
1364 </doc>