Implemented interface member:
method
Equals
System.IEquatable<T>.Equals(T)
18 references to Equals
ILCompiler.Compiler (1)
Compiler\Dataflow\ValueNode.cs (1)
65public bool Equals(ValueBasicBlockPair other) => Value.Equals(other.Value) && BasicBlockIndex.Equals(other.BasicBlockIndex);
illink (1)
Microsoft.CodeAnalysis.NetAnalyzers (2)
Microsoft.NetCore.Analyzers\Performance\UseCountProperly.cs (2)
544/// Checks if the given methods is the <see cref="int.Equals(int)"/> methods. 547/// <returns><see langword="true"/> if the given methods is the <see cref="int.Equals(int)"/> methods; otherwise, <see langword="false"/>.</returns>
Microsoft.DotNet.Build.Tasks.Installers (1)
src\RpmHeader.cs (1)
133if (entry.Tag.Equals(Convert.ToInt32(immutableRegionTag)))
Microsoft.Extensions.VectorData.ConformanceTests (4)
HybridSearchTests.cs (4)
102Assert.True(results[0].Record.Code.Equals(1) || results[0].Record.Code.Equals(2)); 103Assert.True(results[1].Record.Code.Equals(1) || results[1].Record.Code.Equals(2));
Microsoft.Maui.Graphics (1)
FontSource.cs (1)
21 && Weight.Equals(other.Weight)
NuGet.CommandLine.XPlat (3)
Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs (3)
740result = newVersion.Minor.Equals(package.ResolvedPackageMetadata.Identity.Version.Minor) && newVersion.Major.Equals(package.ResolvedPackageMetadata.Identity.Version.Major) && result; 745result = newVersion.Major.Equals(package.ResolvedPackageMetadata.Identity.Version.Major) && result;
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (1)
1425return ((int)(object)left).Equals((int)(object)right);
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
126if (!args.Length.Equals(otherArgs.Length))
System.ServiceModel.Primitives.Tests (1)
ServiceModel\SynchronizedCollection.cs (1)
49Assert.True(e.Current.Equals(n++), string.Format("Expected: {0}, got:{1}", n-1, e.Current));
System.Speech (2)
AudioFormat\SpeechAudioFormatInfo.cs (2)
110if (!(_averageBytesPerSecond.Equals(refObj._averageBytesPerSecond) && 115_samplesPerSecond.Equals(refObj._samplesPerSecond)))