BigInteger.CompareTo Method (UInt64)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Compares a big integer to an unsigned long.

This API is not CLS-compliant. The CLS-compliant alternative is .

Namespace:  Microsoft.SolverFoundation.Common
Assembly:  Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)

Syntax

'Declaration
<CLSCompliantAttribute(False)> _
Public Function CompareTo ( _
    uu As ULong _
) As Integer
[CLSCompliantAttribute(false)]
public int CompareTo(
    ulong uu
)
[CLSCompliantAttribute(false)]
public:
virtual int CompareTo(
    unsigned long long uu
) sealed
[<CLSCompliantAttribute(false)>]
abstract CompareTo : 
        uu:uint64 -> int 
[<CLSCompliantAttribute(false)>]
override CompareTo : 
        uu:uint64 -> int 
public final function CompareTo(
    uu : ulong
) : int

Parameters

Return Value

Type: System.Int32
A signed integer that indicates how the big integer compares to an unsigned long.

Return value

Description

Less than zero

The big integer is less than an unsigned long.

Zero

The big integer is equal to an unsigned long.

Greater than zero

The big integer is greater than an unsigned long.

Implements

IComparable<T>.CompareTo(T)

.NET Framework Security

See Also

Reference

BigInteger Structure

CompareTo Overload

Microsoft.SolverFoundation.Common Namespace