ParserErrorCollection 构造函数

定义

初始化 ParserErrorCollection 类的新实例。

重载

ParserErrorCollection()

初始化 ParserErrorCollection 类的新实例。

ParserErrorCollection(ParserError[])

初始化 ParserErrorCollection 类的新实例。

ParserErrorCollection()

初始化 ParserErrorCollection 类的新实例。

public:
 ParserErrorCollection();
public ParserErrorCollection ();
Public Sub New ()

示例

下面的代码示例演示如何初始化类的 ParserErrorCollection 实例。

// Create an empty ParserErrorCollection.
ParserErrorCollection collection = new ParserErrorCollection();
' Create an empty ParserErrorCollection.
Dim collection As New ParserErrorCollection()

适用于

ParserErrorCollection(ParserError[])

初始化 ParserErrorCollection 类的新实例。

public:
 ParserErrorCollection(cli::array <System::Web::ParserError ^> ^ value);
public ParserErrorCollection (System.Web.ParserError[] value);
new System.Web.ParserErrorCollection : System.Web.ParserError[] -> System.Web.ParserErrorCollection
Public Sub New (value As ParserError())

参数

value
ParserError[]

ParserError 类型的数组,用于指定要添加到集合中的错误。

注解

构造 ParserErrorCollection.ParserErrorCollection 函数将对象数组 ParserError 添加到集合中。

适用于