ParserErrorCollection.IndexOf(ParserError) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得集合中指定 ParserError 物件的索引。
public:
int IndexOf(System::Web::ParserError ^ value);
public int IndexOf (System.Web.ParserError value);
member this.IndexOf : System.Web.ParserError -> int
Public Function IndexOf (value As ParserError) As Integer
參數
- value
- ParserError
要在集合中尋找的 ParserError。
傳回
集合中以零起始的 ParserError 物件索引,否則為 1 (前提是 ParserError 不在集合中)。
範例
下列程式碼範例示範如何在集合中指定的索引處尋找 物件的索引 ParserError ParserErrorCollection 。
// Test for the presence of a ParserError in the
// collection, and retrieve its index if it is found.
ParserError testError = new ParserError("Error", "Path", 1);
int itemIndex = -1;
if (collection.Contains(testError))
itemIndex = collection.IndexOf(testError);
' Test for the presence of a ParserError in the
' collection, and retrieve its index if it is found.
Dim testError As New ParserError("Error", "Path", 1)
Dim itemIndex As Integer = -1
If collection.Contains(testError) Then
itemIndex = collection.IndexOf(testError)
End If
備註
IndexOf使用 方法來判斷集合中 物件的索引 ParserError 。 當您使用 IEnumerator 方法所 GetEnumerator 傳回的物件 ParserError 逐一查看集合時,這非常有用。