11 references to CompareTo
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (1)
3540return ((ulong)value1).CompareTo((ulong)value2);
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\TlsListener.cs (1)
140return x.Key.CompareTo(y.Key);
Microsoft.CodeAnalysis (1)
SwitchConstantValueHelper.cs (1)
86return first.UInt64Value.CompareTo(second.UInt64Value);
Microsoft.ML.DataView (2)
DataViewRowId.cs (2)
45int result = High.CompareTo(other.High); 46return result == 0 ? Low.CompareTo(other.Low) : result;
System.Data.Common (1)
System\Data\Common\UInt64Storage.cs (1)
186return valueNo1.CompareTo((ulong)value);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\TimeOnly.cs (1)
398public int CompareTo(TimeOnly value) => _ticks.CompareTo(value._ticks);
System.Private.Xml (1)
System\Xml\Schema\DataTypeImplementation.cs (1)
3470return ((ulong)value1).CompareTo((ulong)value2);
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (3)
1159return _sign * uuTmp.CompareTo(uu); 1170return ((ulong)_sign).CompareTo(other); 1175return uuTmp.CompareTo(other);