共用方式為


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 新增至集合。

適用於