CodeNamespaceImportCollection.AddRange(CodeNamespaceImport[]) Method
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.
Adds a set of CodeNamespaceImport objects to the collection.
public:
void AddRange(cli::array <System::CodeDom::CodeNamespaceImport ^> ^ value);
public void AddRange (System.CodeDom.CodeNamespaceImport[] value);
member this.AddRange : System.CodeDom.CodeNamespaceImport[] -> unit
Public Sub AddRange (value As CodeNamespaceImport())
Parameters
- value
- CodeNamespaceImport[]
An array of type CodeNamespaceImport that contains the objects to add to the collection.
Exceptions
value
is null
.
Examples
The following example demonstrates how to use the AddRange method to add the members of a CodeNamespaceImport array to a CodeNamespaceImportCollection.
// Adds an array of CodeNamespaceImport objects to the collection.
array<CodeNamespaceImport^>^ Imports = {
gcnew CodeNamespaceImport( "System" ),
gcnew CodeNamespaceImport( "System.Drawing" )};
collection->AddRange( Imports );
// Adds an array of CodeNamespaceImport objects to the collection.
CodeNamespaceImport[] Imports = {
new CodeNamespaceImport("System"),
new CodeNamespaceImport("System.Drawing") };
collection.AddRange( Imports );
' Adds an array of CodeNamespaceImport objects to the collection.
Dim [Imports] As CodeNamespaceImport() = _
{New CodeNamespaceImport("System"), _
New CodeNamespaceImport("System.Drawing")}
collection.AddRange([Imports])
Applies to
See also
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET