This documentation is archived and is not being maintained.
BigInteger Methods
Visual Studio 2010
The BigInteger type exposes the following members.
| Name | Description | |
|---|---|---|
|
Abs | Gets the absolute value of a BigInteger object. |
|
Add | Adds two BigInteger values and returns the result. |
|
Compare | Compares two BigInteger values and returns an integer that indicates whether the first value is less than, equal to, or greater than the second value. |
|
CompareTo(BigInteger) | Compares this instance to a second 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. |
|
CompareTo(Int64) | 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. |
|
CompareTo(Object) | 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. |
|
CompareTo(UInt64) | 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. |
|
Divide | Divides one BigInteger value by another and returns the result. |
|
DivRem | Divides one BigInteger value by another, returns the result, and returns the remainder in an output parameter. |
|
Equals(BigInteger) | Returns a value that indicates whether the current instance and a specified BigInteger object have the same value. |
|
Equals(Int64) | Returns a value that indicates whether the current instance and a signed 64-bit integer have the same value. |
|
Equals(Object) | Returns a value that indicates whether the current instance and a specified object have the same value. (Overrides ValueType::Equals(Object).) |
|
Equals(UInt64) | Returns a value that indicates whether the current instance and an unsigned 64-bit integer have the same value. |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetHashCode | Returns the hash code for the current BigInteger object. (Overrides ValueType::GetHashCode().) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
GreatestCommonDivisor | Finds the greatest common divisor of two BigInteger values. |
|
Log(BigInteger) | Returns the natural (base e) logarithm of a specified number. |
|
Log(BigInteger, Double) | Returns the logarithm of a specified number in a specified base. |
|
Log10 | Returns the base 10 logarithm of a specified number. |
|
Max | Returns the larger of two BigInteger values. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
Min | Returns the smaller of two BigInteger values. |
|
ModPow | Performs modulus division on a number raised to the power of another number. |
|
Multiply | Returns the product of two BigInteger values. |
|
Negate | Negates a specified BigInteger value. |
|
Parse(String) | Converts the string representation of a number to its BigInteger equivalent. |
|
Parse(String, NumberStyles) | Converts the string representation of a number in a specified style to its BigInteger equivalent. |
|
Parse(String, IFormatProvider) | Converts the string representation of a number in a specified culture-specific format to its BigInteger equivalent. |
|
Parse(String, NumberStyles, IFormatProvider) | Converts the string representation of a number in a specified style and culture-specific format to its BigInteger equivalent. |
|
Pow | Raises a BigInteger value to the power of a specified value. |
|
Remainder | Performs integer division on two BigInteger values and returns the remainder. |
|
Subtract | Subtracts one BigInteger value from another and returns the result. |
|
ToByteArray | Converts a BigInteger value to a byte array. |
|
ToString() | Converts the numeric value of the current BigInteger object to its equivalent string representation. (Overrides ValueType::ToString().) |
|
ToString(IFormatProvider) | Converts the numeric value of the current BigInteger object to its equivalent string representation by using the specified culture-specific formatting information. |
|
ToString(String) | Converts the numeric value of the current BigInteger object to its equivalent string representation by using the specified format. |
|
ToString(String, IFormatProvider) | Converts the numeric value of the current BigInteger object to its equivalent string representation by using the specified format and culture-specific format information. |
|
TryParse(String, BigInteger%) | Tries to convert the string representation of a number to its BigInteger equivalent, and returns a value that indicates whether the conversion succeeded. |
|
TryParse(String, NumberStyles, IFormatProvider, BigInteger%) | Tries to convert the string representation of a number in a specified style and culture-specific format to its BigInteger equivalent, and returns a value that indicates whether the conversion succeeded. |
Show: