CompilerErrorCollection 构造函数

定义

初始化 CompilerErrorCollection 类的新实例。

重载

CompilerErrorCollection()

初始化 CompilerErrorCollection 类的新实例。

CompilerErrorCollection(CompilerError[])

初始化包含指定的 CompilerErrorCollection 对象数组的 CompilerError 新实例。

CompilerErrorCollection(CompilerErrorCollection)

初始化 CompilerErrorCollection 类的新实例,该实例包含指定 CompilerErrorCollection 的内容。

CompilerErrorCollection()

Source:
CompilerErrorCollection.cs
Source:
CompilerErrorCollection.cs
Source:
CompilerErrorCollection.cs

初始化 CompilerErrorCollection 类的新实例。

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

示例

以下示例演示如何创建 类的 CompilerErrorCollection 空实例。

// Creates an empty CompilerErrorCollection.
CompilerErrorCollection^ collection = gcnew CompilerErrorCollection;
// Creates an empty CompilerErrorCollection.
CompilerErrorCollection collection = new CompilerErrorCollection();
' Creates an empty CompilerErrorCollection.
Dim collection As New CompilerErrorCollection()

适用于

CompilerErrorCollection(CompilerError[])

Source:
CompilerErrorCollection.cs
Source:
CompilerErrorCollection.cs
Source:
CompilerErrorCollection.cs

初始化包含指定的 CompilerErrorCollection 对象数组的 CompilerError 新实例。

public:
 CompilerErrorCollection(cli::array <System::CodeDom::Compiler::CompilerError ^> ^ value);
public CompilerErrorCollection (System.CodeDom.Compiler.CompilerError[] value);
new System.CodeDom.Compiler.CompilerErrorCollection : System.CodeDom.Compiler.CompilerError[] -> System.CodeDom.Compiler.CompilerErrorCollection
Public Sub New (value As CompilerError())

参数

value
CompilerError[]

用来初始化集合的 CompilerError 对象数组。

例外

valuenull

适用于

CompilerErrorCollection(CompilerErrorCollection)

Source:
CompilerErrorCollection.cs
Source:
CompilerErrorCollection.cs
Source:
CompilerErrorCollection.cs

初始化 CompilerErrorCollection 类的新实例,该实例包含指定 CompilerErrorCollection 的内容。

public:
 CompilerErrorCollection(System::CodeDom::Compiler::CompilerErrorCollection ^ value);
public CompilerErrorCollection (System.CodeDom.Compiler.CompilerErrorCollection value);
new System.CodeDom.Compiler.CompilerErrorCollection : System.CodeDom.Compiler.CompilerErrorCollection -> System.CodeDom.Compiler.CompilerErrorCollection
Public Sub New (value As CompilerErrorCollection)

参数

value
CompilerErrorCollection

一个 CompilerErrorCollection 对象,用来初始化集合。

例外

valuenull

适用于