14 references to SequenceEqual
Aspire.Dashboard (1)
Otlp\Model\OtlpInstrument.cs (1)
138return x.Span.SequenceEqual(y.Span);
ConfigurationSchemaGenerator (1)
RuntimeSource\SourceGenerators\DiagnosticInfo.cs (1)
45MessageArgs.SequenceEqual(other.MessageArgs) &&
Microsoft.AspNetCore.Components.Web (2)
Routing\NavLink.cs (2)
186if (currentUriAbsolute.SequenceEqual(hrefAbsolute, CaseInsensitiveComparer)) 202currentUriAbsolute.SequenceEqual(hrefAbsolute.Slice(0, hrefAbsolute.Length - 1), CaseInsensitiveComparer))
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Protocol\Diagnostic.cs (1)
152: this.Tags.Equals(other.Tags) || this.Tags.SequenceEqual(other.Tags))
Protocol\SymbolInformation.cs (1)
120: (this.Tags.Equals(other.Tags) || this.Tags.SequenceEqual(other.Tags)))
System.ComponentModel.Composition (1)
System\ComponentModel\Composition\ReflectionModel\LazyMemberInfo.cs (1)
134return _accessors.SequenceEqual(other._accessors);
System.Composition.TypedParts (1)
System\Composition\TypedParts\Discovery\TypeInspector.cs (1)
193if (!(mappedType == partType || mappedType.GenericTypeArguments.SequenceEqual(partType.GenericTypeParameters)))
System.Data.Common (2)
System\Data\DataKey.cs (1)
173return column1.AsSpan().SequenceEqual(column2);
System\Data\RelatedView.cs (1)
66bool allow = childValues.AsSpan().SequenceEqual(parentValues);
System.Linq (1)
System\Linq\SequenceEqual.cs (1)
29return firstSpan.SequenceEqual(secondSpan, comparer);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (3)
3445SequenceEqual((ReadOnlySpan<T>)span, other, comparer); 3585SequenceEqual(span.Slice(0, value.Length), value, comparer); 3630SequenceEqual(span.Slice(span.Length - value.Length), value, comparer);