Base:
method
GetHashCode
System.ValueType.GetHashCode()
16 references to GetHashCode
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\NamingRule.cs (1)
30=> Hash.Combine(SymbolSpecification.ID.GetHashCode(), Hash.Combine(NamingStyle.ID.GetHashCode(), (int)EnforcementLevel));
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
MetadataContextId.cs (1)
29=> ModuleVersionId.GetHashCode();
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Protocol\Extensions\VSImageId.cs (1)
56hashCode = (hashCode * -1521134295) + this.Guid.GetHashCode();
Protocol\Internal\Text\ImageId.cs (1)
102var hashCode = guid.GetHashCode();
Protocol\Internal\VSInternalIconMapping.cs (1)
63hashCode = (hashCode * -1521134295) + this.Images[i].Guid.GetHashCode();
Microsoft.CodeAnalysis.Workspaces (4)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\NamingRule.cs (1)
30=> Hash.Combine(SymbolSpecification.ID.GetHashCode(), Hash.Combine(NamingStyle.ID.GetHashCode(), (int)EnforcementLevel));
Workspace\Solution\DocumentId.cs (1)
81=> Hash.Combine(this.ProjectId, this.Id.GetHashCode());
Workspace\Solution\ProjectId.cs (1)
91=> this.Id.GetHashCode();
Workspace\Solution\SolutionId.cs (1)
78=> this.Id.GetHashCode();
PresentationCore (2)
MS\Internal\Ink\ExtendedProperty.cs (1)
33return Id.GetHashCode() ^ Value.GetHashCode();
System\Windows\Media\PixelFormat.cs (1)
315return Guid.GetHashCode();
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\CommandID.cs (1)
38public override int GetHashCode() => Guid.GetHashCode() << 2 | ID;
System.Drawing.Common.Tests (2)
System\Drawing\Imaging\FrameDimensionTests.cs (1)
67Assert.Equal(guid.GetHashCode(), new FrameDimension(guid).GetHashCode());
System\Drawing\Imaging\ImageFormatTests.cs (1)
125Assert.Equal(guid.GetHashCode(), new ImageFormat(guid).GetHashCode());
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Globalization\SortVersion.cs (1)
59return m_NlsVersion * 7 | m_SortId.GetHashCode();
System.Reflection.Metadata (1)
System\Reflection\Metadata\BlobContentId.cs (1)
128public override int GetHashCode() => Hash.Combine(Stamp, Guid.GetHashCode());