CodeTypeDeclarationCollection Constructors

Definition

Initializes a new instance of the CodeTypeDeclarationCollection class.

Overloads

CodeTypeDeclarationCollection()

Initializes a new instance of the CodeTypeDeclarationCollection class.

CodeTypeDeclarationCollection(CodeTypeDeclaration[])

Initializes a new instance of the CodeTypeDeclarationCollection class that contains the specified array of CodeTypeDeclaration objects.

CodeTypeDeclarationCollection(CodeTypeDeclarationCollection)

Initializes a new instance of the CodeTypeDeclarationCollection class that contains the elements of the specified source collection.

CodeTypeDeclarationCollection()

Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs

Initializes a new instance of the CodeTypeDeclarationCollection class.

C#
public CodeTypeDeclarationCollection();

Examples

The following example shows how to create an empty instance of the CodeTypeDeclarationCollection class.

C#
// Creates an empty CodeTypeDeclarationCollection.
CodeTypeDeclarationCollection collection = new CodeTypeDeclarationCollection();

Applies to

.NET 10 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

CodeTypeDeclarationCollection(CodeTypeDeclaration[])

Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs

Initializes a new instance of the CodeTypeDeclarationCollection class that contains the specified array of CodeTypeDeclaration objects.

C#
public CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclaration[] value);

Parameters

value
CodeTypeDeclaration[]

An array of CodeTypeDeclaration objects with which to initialize the collection.

Applies to

.NET 10 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

CodeTypeDeclarationCollection(CodeTypeDeclarationCollection)

Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs
Source:
CodeTypeDeclarationCollection.cs

Initializes a new instance of the CodeTypeDeclarationCollection class that contains the elements of the specified source collection.

C#
public CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclarationCollection value);

Parameters

value
CodeTypeDeclarationCollection

A CodeTypeDeclarationCollection object with which to initialize the collection.

Applies to

.NET 10 (package-provided) and other versions
Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10