Прочетете на английски Редактиране

Споделяне чрез


BigInteger.GreaterThan Operator

Definition

Returns a value that indicates whether a specified value is greater than another specified value.

Overloads

GreaterThan(BigInteger, BigInteger)

Returns a value that indicates whether a BigInteger value is greater than another BigInteger value.

GreaterThan(UInt64, BigInteger)

Returns a value that indicates whether a BigInteger value is greater than a 64-bit unsigned integer.

GreaterThan(BigInteger, UInt64)

Returns a value that indicates whether a BigInteger value is greater than a 64-bit unsigned integer.

GreaterThan(Int64, BigInteger)

Returns a value that indicates whether a 64-bit signed integer is greater than a BigInteger value.

GreaterThan(BigInteger, Int64)

Returns a value that indicates whether a BigInteger is greater than a 64-bit signed integer value.

GreaterThan(BigInteger, BigInteger)

Source:
BigInteger.cs
Source:
BigInteger.cs
Source:
BigInteger.cs

Returns a value that indicates whether a BigInteger value is greater than another BigInteger value.

C#
public static bool operator >(System.Numerics.BigInteger left, System.Numerics.BigInteger right);

Parameters

left
BigInteger

The first value to compare.

right
BigInteger

The second value to compare.

Returns

true if left is greater than right; otherwise, false.

Implements

Remarks

The GreaterThan method defines the operation of the greater than operator for BigInteger values. It enables code such as the following:

C#
BigInteger number1 = 945834723;
BigInteger number2 = 345145625;
BigInteger number3 = 945834724;
Console.WriteLine(number1 > number2);              // Displays True
Console.WriteLine(number1 > number3);              // Displays False

Languages that do not support custom operators can call the BigInteger.Compare(BigInteger, BigInteger) method instead. They can also call the GreaterThan(BigInteger, BigInteger) method directly, as the following example shows.

VB
Dim numberA As BigInteger = 945834723
Dim numberB As BigInteger = 345145625
Dim numberC As BigInteger = 945834724 
Console.WriteLine(BigInteger.op_GreaterThan(numberA, numberB))    ' Displays True
Console.WriteLine(BigInteger.op_GreaterThan(numberA, numberC))    ' Displays False

The equivalent method for this operator is BigInteger.CompareTo(BigInteger).

See also

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

GreaterThan(UInt64, BigInteger)

Source:
BigInteger.cs
Source:
BigInteger.cs
Source:
BigInteger.cs

Important

This API is not CLS-compliant.

Returns a value that indicates whether a BigInteger value is greater than a 64-bit unsigned integer.

C#
[System.CLSCompliant(false)]
public static bool operator >(ulong left, System.Numerics.BigInteger right);

Parameters

left
UInt64

The first value to compare.

right
BigInteger

The second value to compare.

Returns

true if left is greater than right; otherwise, false.

Attributes

Remarks

The GreaterThan method defines the operation of the greater than operator for BigInteger values. It enables code such as the following:

C#
BigInteger bigNumber = BigInteger.Pow(Int32.MaxValue, 2);
ulong number = UInt64.MaxValue;
if (number > bigNumber) {
   // Do something
}

Languages that do not support custom operators can call the BigInteger.CompareTo(UInt64) method instead. Some languages can also call the GreaterThan(UInt64, BigInteger) method directly, as the following example shows.

VB
Dim bigNumber As BigInteger = BigInteger.Pow(Int32.MaxValue, 2)
Dim number As ULong = UInt64.MaxValue
If BigInteger.op_GreaterThan(number, bigNumber) Then
   ' Do something
End If

See also

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

GreaterThan(BigInteger, UInt64)

Source:
BigInteger.cs
Source:
BigInteger.cs
Source:
BigInteger.cs

Important

This API is not CLS-compliant.

Returns a value that indicates whether a BigInteger value is greater than a 64-bit unsigned integer.

C#
[System.CLSCompliant(false)]
public static bool operator >(System.Numerics.BigInteger left, ulong right);

Parameters

left
BigInteger

The first value to compare.

right
UInt64

The second value to compare.

Returns

true if left is greater than right; otherwise, false.

Attributes

Remarks

The GreaterThan method defines the operation of the greater than operator for BigInteger values. It enables code such as the following:

C#
BigInteger bigNumber = BigInteger.Pow(Int32.MaxValue, 2);
ulong number = UInt64.MaxValue;
if (bigNumber > number) {
   // Do something
}

Languages that do not support custom operators can call the BigInteger.CompareTo(UInt64) method instead. Some languages can also call the GreaterThan(BigInteger, UInt64) method directly, as the following example shows.

VB
Dim bigNumber As BigInteger = BigInteger.Pow(Int32.MaxValue, 2)
Dim number As ULong = UInt64.MaxValue
If BigInteger.op_GreaterThan(bigNumber, number) Then
   ' Do something
End If

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

GreaterThan(Int64, BigInteger)

Source:
BigInteger.cs
Source:
BigInteger.cs
Source:
BigInteger.cs

Returns a value that indicates whether a 64-bit signed integer is greater than a BigInteger value.

C#
public static bool operator >(long left, System.Numerics.BigInteger right);

Parameters

left
Int64

The first value to compare.

right
BigInteger

The second value to compare.

Returns

true if left is greater than right; otherwise, false.

Remarks

The GreaterThan method defines the operation of the greater than operator for BigInteger values. It enables code such as the following:

C#
BigInteger bigNumber = BigInteger.Pow(Int32.MaxValue, 4);
long number = Int64.MaxValue;
if (number > bigNumber) {
   // Do something;
}

Languages that do not support custom operators can call the BigInteger.CompareTo(Int64) instance method instead. Some languages can also call the GreaterThan(Int64, BigInteger) method directly, as the following example shows.

VB
Dim bigNumber As BigInteger = BigInteger.Pow(Int32.MaxValue, 4)
Dim number As Long = Int64.MaxValue
If BigInteger.op_GreaterThan(number,bigNumber) Then
   ' Do something
End If

If left is a Byte, Int16, Int32, SByte, UInt16, or UInt32 value, it is implicitly converted to an Int64 value when the operation is performed.

The equivalent method for this operator is BigInteger.CompareTo(Int64).

See also

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

GreaterThan(BigInteger, Int64)

Source:
BigInteger.cs
Source:
BigInteger.cs
Source:
BigInteger.cs

Returns a value that indicates whether a BigInteger is greater than a 64-bit signed integer value.

C#
public static bool operator >(System.Numerics.BigInteger left, long right);

Parameters

left
BigInteger

The first value to compare.

right
Int64

The second value to compare.

Returns

true if left is greater than right; otherwise, false.

Remarks

The GreaterThan method defines the operation of the greater than operator for BigInteger values. It enables code such as the following:

C#
BigInteger bigNumber = BigInteger.Pow(Int32.MaxValue, 4);
long number = Int64.MaxValue;
if (bigNumber > number) {
   // Do something;
}

Languages that do not support custom operators can call the BigInteger.CompareTo(Int64) method instead. Some languages can also call the GreaterThan(BigInteger, Int64) method directly, as the following example shows.

VB
Dim bigNumber As BigInteger = BigInteger.Pow(Int32.MaxValue, 4)
Dim number As Long = Int64.MaxValue
If BigInteger.op_GreaterThan(bigNumber,number) Then
   ' Do something
End If

If right is a Byte, Int16, Int32, SByte, UInt16, or UInt32 value, it is implicitly converted to an Int64 value when the operation is performed.

The equivalent method for this operator is BigInteger.CompareTo(Int64).

See also

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0