Implemented interface members:
39 references to Count
Microsoft.AspNetCore.App.Analyzers (3)
Microsoft.Build (8)
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
Microsoft.CodeAnalysis.Features (1)
Microsoft.CodeAnalysis.Workspaces (4)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
Microsoft.DotNet.Build.Tasks.Feed (2)
Microsoft.VisualStudio.LanguageServices (1)
Microsoft.VisualStudio.LanguageServices.Test.Utilities2 (1)
System.Collections.Immutable (16)
System\Collections\Immutable\ImmutableList_1.cs (15)
62/// no larger element, the bitwise complement of <see cref="ImmutableList{T}.Count"/>.
84/// no larger element, the bitwise complement of <see cref="ImmutableList{T}.Count"/>.
91public int BinarySearch(T item, IComparer<T>? comparer) => this.BinarySearch(0, this.Count, item, comparer);
109/// no larger element, the bitwise complement of <see cref="ImmutableList{T}.Count"/>.
172/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is negative or not less than <see cref="Count"/>.</exception>
180/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is negative or not less than <see cref="Count"/>.</exception>
261Requires.Range(index >= 0 && index <= this.Count, nameof(index));
270Requires.Range(index >= 0 && index <= this.Count, nameof(index));
300Requires.Range(index >= 0 && index <= this.Count, nameof(index));
301Requires.Range(count >= 0 && index <= this.Count - count, nameof(count));
363Requires.Range(index >= 0 && index < this.Count, nameof(index));
475Requires.Range(index + count <= this.Count, nameof(count));
558Requires.Range(index + count <= this.Count, nameof(count));
938/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is negative or not less than <see cref="Count"/> (getter).</exception>
1068/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is negative or not less than <see cref="Count"/> (getter).</exception>