ConfigurationElementCollectionBase<T>.GetEnumerator 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回逐一查看集合的列舉值。
public:
virtual System::Collections::Generic::IEnumerator<T> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<T> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T (requires 'T :> Microsoft.Web.Administration.ConfigurationElement)>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T (requires 'T :> Microsoft.Web.Administration.ConfigurationElement)>
Public Function GetEnumerator () As IEnumerator(Of T)
傳回
IEnumerator<T>
逐一 IEnumerator 查看集合的介面。
實作
備註
您應該在 Visual Basic) 中使用 C# foreach
語句 (for each
, For Each
而不是直接操作列舉值,這會隱藏列舉值的複雜度。
透過集合進行列舉在本質上並非安全執行緒程序。 即使集合經過同步化,其他的執行緒仍可修改該集合,使列舉值擲回例外狀況。 若要保證列舉期間的執行緒安全性,您可以在整個列舉期間鎖定集合,或攔截其他執行緒所做的變更所造成的例外狀況。 若要讓多個執行緒存取集合以進行讀取和寫入,您必須實作自己的同步處理。