ParserErrorCollection.AddRange 方法

定义

向集合中添加 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 类型的数组,用于指定要添加到集合的值。

例外

valuenull

示例

下面的代码示例演示如何向对象添加一系列 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

包含要添加到集合中的 ParserError 对象的 ParserErrorCollection

例外

示例

下面的代码示例演示如何向对象添加一系列 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

适用于