CompilerErrorCollection Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicializa uma nova instância da classe CompilerErrorCollection.
Sobrecargas
CompilerErrorCollection() |
Inicializa uma nova instância da classe CompilerErrorCollection. |
CompilerErrorCollection(CompilerError[]) |
Inicializa uma nova instância de CompilerErrorCollection contendo a matriz de objetos CompilerError especificada. |
CompilerErrorCollection(CompilerErrorCollection) |
Inicializa uma nova instância da classe CompilerErrorCollection que contém o conteúdo do CompilerErrorCollection especificado. |
CompilerErrorCollection()
- Origem:
- CompilerErrorCollection.cs
- Origem:
- CompilerErrorCollection.cs
- Origem:
- CompilerErrorCollection.cs
Inicializa uma nova instância da classe CompilerErrorCollection.
public:
CompilerErrorCollection();
public CompilerErrorCollection ();
Public Sub New ()
Exemplos
O exemplo a seguir demonstra como criar uma instância vazia da CompilerErrorCollection classe .
// 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()
Aplica-se a
CompilerErrorCollection(CompilerError[])
- Origem:
- CompilerErrorCollection.cs
- Origem:
- CompilerErrorCollection.cs
- Origem:
- CompilerErrorCollection.cs
Inicializa uma nova instância de CompilerErrorCollection contendo a matriz de objetos CompilerError especificada.
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())
Parâmetros
- value
- CompilerError[]
Uma matriz de objetos CompilerError com os quais inicializar a coleção.
Exceções
value
é null
.
Aplica-se a
CompilerErrorCollection(CompilerErrorCollection)
- Origem:
- CompilerErrorCollection.cs
- Origem:
- CompilerErrorCollection.cs
- Origem:
- CompilerErrorCollection.cs
Inicializa uma nova instância da classe CompilerErrorCollection que contém o conteúdo do CompilerErrorCollection especificado.
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)
Parâmetros
- value
- CompilerErrorCollection
Um objeto CompilerErrorCollection com o qual inicializar a coleção.
Exceções
value
é null
.