2 instantiations of SZGenericArrayEnumerator
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Array.Enumerators.cs (1)
110internal static readonly SZGenericArrayEnumerator<T> Empty = new SZGenericArrayEnumerator<T>(null, 0);
src\System\Array.CoreCLR.cs (1)
714return length == 0 ? SZGenericArrayEnumerator<T>.Empty : new SZGenericArrayEnumerator<T>(@this, length);
9 references to SZGenericArrayEnumerator
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Array.Enumerators.cs (1)
110internal static readonly SZGenericArrayEnumerator<T> Empty = new SZGenericArrayEnumerator<T>(null, 0);
src\libraries\System.Private.CoreLib\src\System\ArraySegment.cs (1)
263Count == 0 ? SZGenericArrayEnumerator<T>.Empty :
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (2)
1522Count == 0 ? SZGenericArrayEnumerator<TKey>.Empty : 1716Count == 0 ? SZGenericArrayEnumerator<TValue>.Empty :
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\HashSet.cs (1)
370Count == 0 ? SZGenericArrayEnumerator<T>.Empty :
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\List.cs (1)
668Count == 0 ? SZGenericArrayEnumerator<T>.Empty :
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Queue.cs (1)
186Count == 0 ? SZGenericArrayEnumerator<T>.Empty :
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlyCollection.cs (1)
47list.Count == 0 ? SZGenericArrayEnumerator<T>.Empty :
src\System\Array.CoreCLR.cs (1)
714return length == 0 ? SZGenericArrayEnumerator<T>.Empty : new SZGenericArrayEnumerator<T>(@this, length);