CodeAttributeArgumentCollection 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 CodeAttributeArgumentCollection class.
Overloads
CodeAttributeArgumentCollection() |
Initializes a new instance of the CodeAttributeArgumentCollection class. |
CodeAttributeArgumentCollection(CodeAttributeArgument[]) |
Initializes a new instance of the CodeAttributeArgumentCollection class containing the specified array of CodeAttributeArgument objects. |
CodeAttributeArgumentCollection(CodeAttributeArgumentCollection) |
Initializes a new instance of the CodeAttributeArgumentCollection class containing the elements of the specified source collection. |
CodeAttributeArgumentCollection()
Initializes a new instance of the CodeAttributeArgumentCollection class.
public:
CodeAttributeArgumentCollection();
public CodeAttributeArgumentCollection ();
Public Sub New ()
Applies to
CodeAttributeArgumentCollection(CodeAttributeArgument[])
Initializes a new instance of the CodeAttributeArgumentCollection class containing the specified array of CodeAttributeArgument objects.
public:
CodeAttributeArgumentCollection(cli::array <System::CodeDom::CodeAttributeArgument ^> ^ value);
public CodeAttributeArgumentCollection (System.CodeDom.CodeAttributeArgument[] value);
new System.CodeDom.CodeAttributeArgumentCollection : System.CodeDom.CodeAttributeArgument[] -> System.CodeDom.CodeAttributeArgumentCollection
Public Sub New (value As CodeAttributeArgument())
Parameters
- value
- CodeAttributeArgument[]
An array of CodeAttributeArgument objects with which to initialize the collection.
Exceptions
One or more objects in the array are null
.
Applies to
CodeAttributeArgumentCollection(CodeAttributeArgumentCollection)
Initializes a new instance of the CodeAttributeArgumentCollection class containing the elements of the specified source collection.
public:
CodeAttributeArgumentCollection(System::CodeDom::CodeAttributeArgumentCollection ^ value);
public CodeAttributeArgumentCollection (System.CodeDom.CodeAttributeArgumentCollection value);
new System.CodeDom.CodeAttributeArgumentCollection : System.CodeDom.CodeAttributeArgumentCollection -> System.CodeDom.CodeAttributeArgumentCollection
Public Sub New (value As CodeAttributeArgumentCollection)
Parameters
A CodeAttributeArgumentCollection with which to initialize the collection.
Exceptions
value
is null
.