ParserErrorCollection.AddRange 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 ParserError 物件加入集合中。
多載
AddRange(ParserError[]) |
將 ParserError 物件陣列加入集合。 |
AddRange(ParserErrorCollection) |
將現有 ParserErrorCollection 中的物件加入集合中。 |
AddRange(ParserError[])
將 ParserError 物件陣列加入集合。
public:
void AddRange(cli::array <System::Web::ParserError ^> ^ value);
public void AddRange (System.Web.ParserError[] value);
member this.AddRange : System.Web.ParserError[] -> unit
Public Sub AddRange (value As ParserError())
參數
- value
- ParserError[]
ParserError 型別的陣列,指定要加入此集合中的值。
例外狀況
value
為 null
。
範例
下列程式碼範例示範如何將物件範圍 ParserError 新增至 ParserErrorCollection 物件。
// Add an array of ParserError objects to the collection.
ParserError[] errors =
{ new ParserError("Error 2", "Path", 1),
new ParserError("Error 3", "Path", 1) };
collection.AddRange(errors);
// Add a collection of ParserError objects to the collection.
ParserErrorCollection errorsCollection = new ParserErrorCollection();
errorsCollection.Add(new ParserError("Error", "Path", 1));
errorsCollection.Add(new ParserError("Error", "Path", 1));
collection.AddRange(errorsCollection);
' Add an array of ParserError objects to the collection.
Dim errors As ParserError() = _
{New ParserError("Error 2", "Path", 1), _
New ParserError("Error 3", "Path", 1)}
collection.AddRange(errors)
' Ads a collection of ParserError objects to the collection.
Dim errorsCollection As New ParserErrorCollection()
errorsCollection.Add(New ParserError("Error", "Path", 1))
errorsCollection.Add(New ParserError("Error", "Path", 1))
collection.AddRange(errorsCollection)
備註
AddRange使用 方法,將 物件的陣列 ParserError 新增至集合。 當您建立多個 ParserError 物件,並想要使用單一方法呼叫將其新增至集合時,此方法 AddRange 會很有用。 若要將個別 ParserError 物件新增至集合,請使用 Add 方法。
適用於
AddRange(ParserErrorCollection)
將現有 ParserErrorCollection 中的物件加入集合中。
public:
void AddRange(System::Web::ParserErrorCollection ^ value);
public void AddRange (System.Web.ParserErrorCollection value);
member this.AddRange : System.Web.ParserErrorCollection -> unit
Public Sub AddRange (value As ParserErrorCollection)
參數
- value
- ParserErrorCollection
ParserErrorCollection,包含要加入至集合的 ParserError 物件。
例外狀況
ParserError 值為 null
。
範例
下列程式碼範例示範如何將物件範圍 ParserError 新增至 ParserErrorCollection 物件。
// Add an array of ParserError objects to the collection.
ParserError[] errors =
{ new ParserError("Error 2", "Path", 1),
new ParserError("Error 3", "Path", 1) };
collection.AddRange(errors);
// Add a collection of ParserError objects to the collection.
ParserErrorCollection errorsCollection = new ParserErrorCollection();
errorsCollection.Add(new ParserError("Error", "Path", 1));
errorsCollection.Add(new ParserError("Error", "Path", 1));
collection.AddRange(errorsCollection);
' Add an array of ParserError objects to the collection.
Dim errors As ParserError() = _
{New ParserError("Error 2", "Path", 1), _
New ParserError("Error 3", "Path", 1)}
collection.AddRange(errors)
' Ads a collection of ParserError objects to the collection.
Dim errorsCollection As New ParserErrorCollection()
errorsCollection.Add(New ParserError("Error", "Path", 1))
errorsCollection.Add(New ParserError("Error", "Path", 1))
collection.AddRange(errorsCollection)
備註
Add不同于 方法, AddRange 方法沒有傳回值,可用來判斷正在加入的物件是否 ParserError 已經在集合中。 如果您需要此資訊,請先使用 Contains 方法,再使用 AddRange 。