Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CompareTo() [3/6]

int System.Numerics.BigInteger.CompareTo ( object? obj)
inline

Implements System.IComparable< in T >.

Definition at line 1043 of file BigInteger.cs.

1044 {
1045 if (obj == null)
1046 {
1047 return 1;
1048 }
1049 if (!(obj is BigInteger))
1050 {
1052 }
1053 return CompareTo((BigInteger)obj);
1054 }
static string Argument_MustBeBigInt
Definition SR.cs:20
Definition SR.cs:7
int CompareTo(long other)

References System.SR.Argument_MustBeBigInt, System.Numerics.BigInteger.CompareTo(), and System.obj.