Base:
method
GetHashCode
System.ValueType.GetHashCode()
30 references to GetHashCode
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (3)
artifacts\obj\Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests\Release\net9.0\Proto\Transcoding.cs (3)
1873if (SingleInt64 != 0L) hash ^= SingleInt64.GetHashCode(); 1877if (SingleSint64 != 0L) hash ^= SingleSint64.GetHashCode(); 1881if (SingleSfixed64 != 0L) hash ^= SingleSfixed64.GetHashCode();
Microsoft.AspNetCore.Grpc.Swagger.Tests (8)
artifacts\obj\Microsoft.AspNetCore.Grpc.Swagger.Tests\Release\net9.0\Proto\Messages.cs (3)
990if (SingleInt64 != 0L) hash ^= SingleInt64.GetHashCode(); 994if (SingleSint64 != 0L) hash ^= SingleSint64.GetHashCode(); 998if (SingleSfixed64 != 0L) hash ^= SingleSfixed64.GetHashCode();
artifacts\obj\Microsoft.AspNetCore.Grpc.Swagger.Tests\Release\net9.0\Proto\Parameters.cs (5)
189if (ParameterInt != 0L) hash ^= ParameterInt.GetHashCode(); 443if (ParameterOne != 0L) hash ^= ParameterOne.GetHashCode(); 445if (ParameterThree != 0L) hash ^= ParameterThree.GetHashCode(); 1227if (NestedParameterOne != 0L) hash ^= NestedParameterOne.GetHashCode(); 1229if (NestedParameterThree != 0L) hash ^= NestedParameterThree.GetHashCode();
Microsoft.Build.Framework (1)
Profiler\EvaluationLocation.cs (1)
259hashCode = (hashCode * -1521134295) + Id.GetHashCode();
Microsoft.Extensions.DependencyModel (1)
HashCodeCombiner.cs (1)
20get { return _combinedHash64.GetHashCode(); }
Microsoft.Net.Http.Headers (4)
RangeItemHeaderValue.cs (4)
92return _to.GetValueOrDefault().GetHashCode(); 96return _from.GetValueOrDefault().GetHashCode(); 98return _from.GetValueOrDefault().GetHashCode() ^ _to.GetValueOrDefault().GetHashCode();
Sandbox (3)
artifacts\obj\Sandbox\Release\net9.0\Transcoding.cs (3)
1011if (SingleInt64 != 0L) hash ^= SingleInt64.GetHashCode(); 1015if (SingleSint64 != 0L) hash ^= SingleSint64.GetHashCode(); 1019if (SingleSfixed64 != 0L) hash ^= SingleSfixed64.GetHashCode();
SocialWeather (1)
Protobuf\WeatherReport.cs (1)
166if (ReportTime != 0L) hash ^= ReportTime.GetHashCode();
System.Data.Common (2)
System\Data\SQLTypes\SQLInt64.cs (1)
561public override int GetHashCode() => IsNull ? 0 : Value.GetHashCode();
System\Data\SQLTypes\SQLMoney.cs (1)
558IsNull ? 0 : _value.GetHashCode();
System.Drawing.Primitives (1)
System\Drawing\Color.cs (1)
601return HashCode.Combine(value.GetHashCode(), state.GetHashCode(), knownColor.GetHashCode());
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Enum.cs (1)
1267CorElementType.ELEMENT_TYPE_I8 => Unsafe.As<byte, long>(ref data).GetHashCode(),
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
94return value.GetHashCode();
src\libraries\System.Private.CoreLib\src\System\Threading\CancellationTokenRegistration.cs (2)
158public override int GetHashCode() => _node != null ? _node.GetHashCode() ^ _id.GetHashCode() : _id.GetHashCode();
src\libraries\System.Private.CoreLib\src\System\TimeSpan.cs (1)
309public override int GetHashCode() => _ticks.GetHashCode();
xunit.console (1)
common\AssemblyResolution\Microsoft.DotNet.PlatformAbstractions\HashCodeCombiner.cs (1)
15get { return _combinedHash64.GetHashCode(); }