Home »

Name the classes that are introduced in the System.Numerics namespace.

Question ListCategory: .NETName the classes that are introduced in the System.Numerics namespace.
jully882 author asked 9 years ago
1 Answers
ethanbrown author answered 8 years ago

The following two new classes are introduced in the System.Numerics namespace: – BigInteger – Refers to a non- primitive integral type, which is used to hold a value of any size. It has no lower and upper limit, making it possible for you to perform arithmetic calculations with very large numbers, even with the numbers which cannot hold by double or long. – Complex – Represents complex numbers and enables different arithmetic operations with complex numbers. A number represented in the form a + bi, where a is the real part, and b is the imaginary part, is a complex number.

Please login or Register to Submit Answer