www.fgks.org   »   [go: up one dir, main page]

Export (0) Print
Expand All

System.Numerics Namespace

The System.Numerics namespace contains numeric types that complement the numeric primitives, such as Byte, Double, and Int32, that are defined by the .NET Framework.

This namespace includes the following types:

  • The BigInteger structure, which is a nonprimitive integral type that supports arbitrarily large integers. An integral primitive such as Byte or Int32 includes a MinValue and a MaxValue property, which define the lower bound and upper bound supported by that data type. In contrast, the BigInteger structure has no lower or upper bound, and can contain the value of any integer.

  • The Complex structure, which represents a complex number. A complex number is a number in the form a + bi, where a is the real part, and b is the imaginary part.

  StructureDescription
Public structureBigIntegerRepresents an arbitrarily large signed integer.
Public structureComplexRepresents a complex number.

Community Additions

ADD
Show:
© 2014 Microsoft
DCSIMG