CodeExpressionCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the CodeExpressionCollection class.
Overloads
CodeExpressionCollection() |
Initializes a new instance of the CodeExpressionCollection class. |
CodeExpressionCollection(CodeExpression[]) |
Initializes a new instance of the CodeExpressionCollection class containing the specified array of CodeExpression objects. |
CodeExpressionCollection(CodeExpressionCollection) |
Initializes a new instance of the CodeExpressionCollection class containing the elements of the specified source collection. |
CodeExpressionCollection()
- Source:
- CodeExpressionCollection.cs
- Source:
- CodeExpressionCollection.cs
- Source:
- CodeExpressionCollection.cs
- Source:
- CodeExpressionCollection.cs
Initializes a new instance of the CodeExpressionCollection class.
public:
CodeExpressionCollection();
public CodeExpressionCollection ();
Public Sub New ()
Applies to
CodeExpressionCollection(CodeExpression[])
- Source:
- CodeExpressionCollection.cs
- Source:
- CodeExpressionCollection.cs
- Source:
- CodeExpressionCollection.cs
- Source:
- CodeExpressionCollection.cs
Initializes a new instance of the CodeExpressionCollection class containing the specified array of CodeExpression objects.
public:
CodeExpressionCollection(cli::array <System::CodeDom::CodeExpression ^> ^ value);
public CodeExpressionCollection (System.CodeDom.CodeExpression[] value);
new System.CodeDom.CodeExpressionCollection : System.CodeDom.CodeExpression[] -> System.CodeDom.CodeExpressionCollection
Public Sub New (value As CodeExpression())
Parameters
- value
- CodeExpression[]
An array of CodeExpression objects with which to initialize the collection.
Exceptions
One or more objects in the array are null
.
Applies to
CodeExpressionCollection(CodeExpressionCollection)
- Source:
- CodeExpressionCollection.cs
- Source:
- CodeExpressionCollection.cs
- Source:
- CodeExpressionCollection.cs
- Source:
- CodeExpressionCollection.cs
Initializes a new instance of the CodeExpressionCollection class containing the elements of the specified source collection.
public:
CodeExpressionCollection(System::CodeDom::CodeExpressionCollection ^ value);
public CodeExpressionCollection (System.CodeDom.CodeExpressionCollection value);
new System.CodeDom.CodeExpressionCollection : System.CodeDom.CodeExpressionCollection -> System.CodeDom.CodeExpressionCollection
Public Sub New (value As CodeExpressionCollection)
Parameters
- value
- CodeExpressionCollection
A CodeExpressionCollection with which to initialize the collection.
Exceptions
value
is null
.