CodeAttributeArgumentCollection 构造函数

定义

初始化 CodeAttributeArgumentCollection 类的新实例。

重载

CodeAttributeArgumentCollection()

初始化 CodeAttributeArgumentCollection 类的新实例。

CodeAttributeArgumentCollection(CodeAttributeArgument[])

初始化 CodeAttributeArgumentCollection 类的新实例,该实例包含指定的 CodeAttributeArgument 对象数组。

CodeAttributeArgumentCollection(CodeAttributeArgumentCollection)

初始化 CodeAttributeArgumentCollection 类的新实例,该实例包含指定源集合的元素。

CodeAttributeArgumentCollection()

Source:
CodeAttributeArgumentCollection.cs
Source:
CodeAttributeArgumentCollection.cs
Source:
CodeAttributeArgumentCollection.cs

初始化 CodeAttributeArgumentCollection 类的新实例。

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

适用于

CodeAttributeArgumentCollection(CodeAttributeArgument[])

Source:
CodeAttributeArgumentCollection.cs
Source:
CodeAttributeArgumentCollection.cs
Source:
CodeAttributeArgumentCollection.cs

初始化 CodeAttributeArgumentCollection 类的新实例,该实例包含指定的 CodeAttributeArgument 对象数组。

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())

参数

value
CodeAttributeArgument[]

用于初始化该集合的 CodeAttributeArgument 对象数组。

例外

数组中的一个或多个对象为 null

适用于

CodeAttributeArgumentCollection(CodeAttributeArgumentCollection)

Source:
CodeAttributeArgumentCollection.cs
Source:
CodeAttributeArgumentCollection.cs
Source:
CodeAttributeArgumentCollection.cs

初始化 CodeAttributeArgumentCollection 类的新实例,该实例包含指定源集合的元素。

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)

参数

例外

valuenull

适用于