You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xml/System.Numerics/INumberBase`1.xml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -259,7 +259,7 @@
259
259
260
260
## Remarks
261
261
262
-
This function returns `false` for a complex number `a + bi` where `b` is zero.
262
+
This function returns `false` for a complex number `a + bi` where `a` or `b` is zero. In other words, it excludes real numbers and pure imaginary numbers.
263
263
264
264
]]></format>
265
265
</remarks>
@@ -355,15 +355,15 @@ A return value of `false` does not imply that <xref:System.Numerics.INumberBase%
355
355
</Parameters>
356
356
<Docs>
357
357
<paramname="value">The value to be checked.</param>
358
-
<summary>Determines if a value represents an imaginary number.</summary>
358
+
<summary>Determines if a value represents a pure imaginary number.</summary>
359
359
<returns>
360
-
<seelangword="true" /> if <paramrefname="value" /> is an imaginary number; otherwise, <seelangword="false" />.</returns>
360
+
<seelangword="true" /> if <paramrefname="value" /> is a pure imaginary number; otherwise, <seelangword="false" />.</returns>
361
361
<remarks>
362
362
<formattype="text/markdown"><![CDATA[
363
363
364
364
## Remarks
365
365
366
-
This function returns `false` for a complex number `a + bi` where `a` is non-zero.
366
+
This function returns `false` for a complex number `a + bi` where `a` is non-zero, as that number is not purely imaginary.
0 commit comments