BlockingCollection<T>.IEnumerable<T>.GetEnumerator 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为集合中的项提供 IEnumerator<T>。
virtual System::Collections::Generic::IEnumerator<T> ^ System.Collections.Generic.IEnumerable<T>.GetEnumerator() = System::Collections::Generic::IEnumerable<T>::GetEnumerator;
System.Collections.Generic.IEnumerator<T> IEnumerable<T>.GetEnumerator ();
abstract member System.Collections.Generic.IEnumerable<T>.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
override this.System.Collections.Generic.IEnumerable<T>.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
Function GetEnumerator () As IEnumerator(Of T) Implements IEnumerable(Of T).GetEnumerator
返回
集合中的项的 IEnumerator<T>。
实现
例外
注解
与 不同 GetConsumingEnumerable, BlockingCollection<T>.IEnumerable<T>.GetEnumerator 返回不修改基础集合的标准枚举器。 如果在调用 GetEnumerator 时其他线程同时添加或删除元素,则枚举器返回的元素可能不会表示集合的当前状态。