ConcurrentStack<T>.GetEnumerator 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回循环访问 ConcurrentStack<T> 的枚举数。
public:
virtual System::Collections::Generic::IEnumerator<T> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<T> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
Public Function GetEnumerator () As IEnumerator(Of T)
返回
用于 ConcurrentStack<T> 的枚举数。
实现
注解
枚举表示堆栈内容的实时快照。 调用 后 GetEnumerator ,它不会反映集合的任何更新。 枚举器可以安全地与从堆栈读取和写入堆栈一起使用。 枚举器 (后进先出) 顺序返回 LIFO 中的项。